Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Gap between images in Netscape 4 & Opera 6 ???

Status
Not open for further replies.

tnsbuff

Technical User
Jan 23, 2002
216
US
Hi,

In Netscape 4 and Opera (6) there's a gap between the image in the left corner
and the logo image just to the right of it.

Can anyone tell me how to fix that? This is the url in question:


Thanks a bunch for any suggestions!
 
Try this alteration (in bold) to the first table in your code:
-------------
<TABLE BORDER=&quot;0&quot; CELLPADDING=0 CELLSPACING=0 width=&quot;100%&quot;>
<TR>
<TD ROWSPAN=2><IMG NAME=&quot;DRAFT90&quot; SRC=&quot;images/accreditations.gif&quot; width=&quot;198&quot; height=&quot;109&quot;></TD>
<TD WIDTH=523 bgcolor=&quot;#EAE6E0&quot;><IMG NAME=&quot;DRAFT91&quot; SRC=&quot;images/logo_t2.gif&quot;
BORDER=0 width=&quot;523&quot; height=&quot;102&quot; ></TD>
<TD bgcolor=&quot;#EAE6E0&quot; width=&quot;100%&quot;><img src=&quot;images/spacer.gif&quot; width=&quot;5&quot; height=&quot;5&quot;></TD>
</TR>
....
---------------

It has the effect of adding all &quot;extra&quot; space in the table width to that particular column. Necessary since you do not have widths specifically set for all of your columns, and you are making the width of your table relative. Hope this helps.
Ciao, K----------------
&quot;If you were supposed to understand it, we wouldn't call it code&quot; - FedEx
 
Thanks Kim. Problem solved!

Normally, leaving that last column's width unset allows it to contract and expand as necessary, but for some reason in this case it's not working.

Thanks again!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top