Forum Moderators: open
<TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0>
<TD VALIGN=TOP ALIGN=LEFT><IMG SRC="./image/spacer_brown.gif" border=0 WIDTH=565 HEIGHT=2>
</TD>
</TABLE>
I'm just using this to create a LINE accross the screen. Graphically the image shows correctly 565x2 pixles HOWEVER I can't click the images behind it. It covers an area about 565x20 pixels... it's too tall! Is there anyway to force the height to 3 pixels ?
Thanks!
Rich
IN IE 5.5
man how did you EVER figure that out?
Here's the final answer:
<TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0>
<TD VALIGN=TOP ALIGN=LEFT><IMG SRC="./image/spacer_brown.gif" border=0 WIDTH=565 HEIGHT=2>
</TD><br>
</TABLE>
<table border=0 cellspacing=0 cellpadding=0 height=2>
<tr><td><img src="brown.gif" border=0 height=2 width=565></td>
</tr></table>
It's eliminating the space between tags and the hard line breaks (no space between) that helps keep things ship-shape. I've puzzled over code forever only to look and see some unexplained gap between table tags, especially closing </td>'s - changed it - and solved the problem.