Need help with HTML tables

galas

Member
Feb 25, 2002
66
0
0
looplab

This is a site that I am working on, and if you go to it you can see my problem - in the top corners of the site and the lower right corner as well, the edges are supposed to be a smooth curve, but I cannot figure out how to get rid of those little lines that are outside the curve. I have only noticed this is a problem for IE on WinXP...it doesn't occur on my mandrake 8.2 box...so if you don't see any problems with what i'm talking about then could you let me know that too and what browser/os you are using? Please if you know how to fix this, let me know...it has been driving me crazy
thanks,
.:galas:.
 

Beau

Lifer
Jun 25, 2001
17,730
0
76
www.beauscott.com
Don't use the images align attribute for placement in cells, it's really only used in relation to text. If you are trying to place an image in the cell, use the cells align attributes. Example:

<table cellpadding=0 cellspacing=0 border=0>
<tr>
<td align="left"><img src="header.gif" border=0></td>
<td></td>
<td align="right"><img src="rightHeader.gif" border=0></td>
</tr>
</table>