Sorry if this has been answered before, I searched but with no luck. Anyway I want my table to render all the way to the bottom of the page. I did this using a 100% table height and a bottommargin="0". It renders to the bottom in IE but not in firebird. Annyone know how I can fix this?
Here is the code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Liquid Systems Inc.</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style type="text/css">
<!--
a {color:#666666; text-decoration:none}
a:hover {color:#EB8D1C; text-decoration:underlined}
body {SCROLLBAR-FACE-COLOR:#C4C4C4;
SCROLLBAR-HIGHLIGHT-COLOR:#D3D2D2; SCROLLBAR-SHADOW-COLOR:#666666;
SCROLLBAR-3DLIGHT-COLOR:#C4C4C4; SCROLLBAR-ARROW-COLOR:#506A78;
SCROLLBAR-TRACK-COLOR:#C4C4C4; SCROLLBAR-DARKSHADOW-COLOR:#C4C4C4;}
-->
</style>
</head>
<body bgcolor="#C4C4C4" topmargin="0" bottommargin="0">
<div align="center">
<table width="494" height="100%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td width="16" rowspan="3" valign="top" background="images/left_border.jpg"> </td>
<td width="462" height="128" valign="top" bgcolor="#FFFFFF"><object classid="clsid
27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="460" height="210" hspace="1" align="absmiddle">
<param name="movie" value="main.swf">
<param name="quality" value="high">
<embed src="main.swf" width="460" height="210" hspace="1" align="absmiddle" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash"></embed></object></td>
<td width="16" rowspan="3" valign="top" background="images/right_border.jpg"> </td>
</tr>
<tr>
<td height="269" valign="top" bgcolor="#FFFFFF"> <iframe name="content" src="news.htm" height="350" width="448" scrolling="auto" frameborder="0">
</iframe> </td>
</tr>
<tr>
<td align="center" valign="bottom" bgcolor="#FFFFFF"><font color="#898989" size="1" face="Verdana, Arial, Helvetica, sans-serif"><a href="news.htm" target="content">news</a>
| <a href="about.htm" target="content">about</a> | <a href="services.htm" target="content">services</a> | <a href="contact.htm" target="content">contact</a>
| <a href="legal.htm" target="content">legal information</a></font></td>
</tr>
</table>
</div>
</body>
</html>
Thanks in advance.
Here is the code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Liquid Systems Inc.</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style type="text/css">
<!--
a {color:#666666; text-decoration:none}
a:hover {color:#EB8D1C; text-decoration:underlined}
body {SCROLLBAR-FACE-COLOR:#C4C4C4;
SCROLLBAR-HIGHLIGHT-COLOR:#D3D2D2; SCROLLBAR-SHADOW-COLOR:#666666;
SCROLLBAR-3DLIGHT-COLOR:#C4C4C4; SCROLLBAR-ARROW-COLOR:#506A78;
SCROLLBAR-TRACK-COLOR:#C4C4C4; SCROLLBAR-DARKSHADOW-COLOR:#C4C4C4;}
-->
</style>
</head>
<body bgcolor="#C4C4C4" topmargin="0" bottommargin="0">
<div align="center">
<table width="494" height="100%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td width="16" rowspan="3" valign="top" background="images/left_border.jpg"> </td>
<td width="462" height="128" valign="top" bgcolor="#FFFFFF"><object classid="clsid

<param name="movie" value="main.swf">
<param name="quality" value="high">
<embed src="main.swf" width="460" height="210" hspace="1" align="absmiddle" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash"></embed></object></td>
<td width="16" rowspan="3" valign="top" background="images/right_border.jpg"> </td>
</tr>
<tr>
<td height="269" valign="top" bgcolor="#FFFFFF"> <iframe name="content" src="news.htm" height="350" width="448" scrolling="auto" frameborder="0">
</iframe> </td>
</tr>
<tr>
<td align="center" valign="bottom" bgcolor="#FFFFFF"><font color="#898989" size="1" face="Verdana, Arial, Helvetica, sans-serif"><a href="news.htm" target="content">news</a>
| <a href="about.htm" target="content">about</a> | <a href="services.htm" target="content">services</a> | <a href="contact.htm" target="content">contact</a>
| <a href="legal.htm" target="content">legal information</a></font></td>
</tr>
</table>
</div>
</body>
</html>
Thanks in advance.
Comment