Netscape 4.7 and Liquid Tables (aka Fluid or Expandable Tables)

liunx

Guest
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.<br />
<br />
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??<br />
<br />
<TABLE height="100%" cellSpacing="0" cellPadding="0" width="100%" border="0"><br />
<TR height="89"><br />
<TD height="89"><IMG src=http://www.webdeveloper.com/forum/archive/index.php/"bar_03.jpg" height="89" width="100%"></TD><br />
<TD vAlign="top" colSpan="2" height="89"><IMG height="89" src=http://www.webdeveloper.com/forum/archive/index.php/"banner.jpg" width="178" border="0"><br />
</TR><br />
<br />
...more rows etc<br />
<br />
</TABLE><br />
<br />
Thanks in advance<!--content-->There's nothing wrong with what you have posted. I can replace the images with something I have locally, and the images render fine.<br />
<br />
There must be some problem with another part of your page. Please post a link.<!--content-->Originally posted by eclipse33 <br />
I am trying to correct some Netscape 4.7 issues on a web page. <br />
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??<br />
Thanks in advance <br />
Bold text are changes, Height of table can be dropped, since data will expand it as needed. Note where valign now is. <br />
<TABLE height="100%" cellSpacing="0" cellPadding="0" width="100%"<br />
border="1"> <br />
<TR height="89" align="left" valign="top"> <br />
<TD width="12%" height="89"><IMG src=http://www.webdeveloper.com/forum/archive/index.php/"bar_03.jpg" height="89" width="89"></TD> <br />
<TD width="88%" colSpan="2" height="89"><IMG height="89" src=http://www.webdeveloper.com/forum/archive/index.php/"banner.jpg"<br />
width="178" border="0"> </TD><br />
</TR> <br />
<br />
</TABLE><!--content-->
 
Back
Top