Click to See Complete Forum and Search --> : Netscape 4.7 and Liquid Tables (aka Fluid or Expandable Tables)


eclipse33
03-20-2003, 01:27 PM
I am trying to correct some Netscape 4.7 issues on a web page. The top table is supposed to be a liquid table (aka fluid or expandable - not sure on the correct term) The table needs to expand based on the screen resolution.

The below code works fine in IE but of course Netscape 4.7 has an issue with it. bar_03.jpg will not display in Netscape 4.7...any ideas??

<TABLE height="100%" cellSpacing="0" cellPadding="0" width="100%" border="0">
<TR height="89">
<TD height="89"><IMG src="bar_03.jpg" height="89" width="100%"></TD>
<TD vAlign="top" colSpan="2" height="89"><IMG height="89" src="banner.jpg" width="178" border="0">
</TR>

...more rows etc

</TABLE>

Thanks in advance

gil davis
03-20-2003, 03:18 PM
There's nothing wrong with what you have posted. I can replace the images with something I have locally, and the images render fine.

There must be some problem with another part of your page. Please post a link.

jdavia
03-20-2003, 04:15 PM
Originally posted by eclipse33
I am trying to correct some Netscape 4.7 issues on a web page.
The below code works fine in IE but of course Netscape 4.7 has an issue with it. bar_03.jpg will not display in Netscape 4.7...any ideas??
Thanks in advance
Bold text are changes, Height of table can be dropped, since data will expand it as needed. Note where valign now is.
<TABLE height="100%" cellSpacing="0" cellPadding="0" width="100%"
border="1">
<TR height="89" align="left" valign="top">
<TD width="12%" height="89"><IMG src="bar_03.jpg" height="89" width="89"></TD>
<TD width="88%" colSpan="2" height="89"><IMG height="89" src="banner.jpg"
width="178" border="0"> </TD>
</TR>

</TABLE>