Forum Moderators: open

Message Too Old, No Replies

Top design not working in Netscape

top banner not working the way I want in Netscape

         

helpneeded

10:31 am on Dec 23, 2003 (gmt 0)



In ie this top is working in ie but not in Netscape - the green line in on top and below banner ( I thought there is only only 1 line there) and words coming on line)
Here is code. Thanks for all help

<body leftmargin=0 topmargin=0>
<table width="728" border="0" cellspacing="0" cellpadding="0">
<tr><td width="284"><img src="images/lt1.gif" width="20" height="65" border="0" alt=""><img src="images/lt2.gif" width="264" height="65" border="0" alt=""></td>
<td width="520" align="right" background="images/lt3.gif"><b><font class="wel">Welcome back</font> <font class="wel1">****x@xxxx.com,</font> <font class="wel">Not You?</font> <a class="welLink" href="#">Log In</a>
<br> <a class="welLink" href="#">View account Summery</a>&nbsp;&nbsp;<a class="welLink" href="#">Log out</a></b></td></tr>
<tr valign="middle"><td height="20" colspan="2" bgcolor="#0048CD">
<table width="728"><tr><td><img src="images/emp.gif" width="4" height="18" border="0" valign="center" alt="" align="left"><a href="#" class="topLinks">Home</a></td>
<td height="20" valign="center" bgcolor="#0048CD"><img src="images/emp.gif" width="4" height="18" border="0" valign="center" alt="" align="left"><a href="#" class="topLinks">How it Works</a></td>
<td height="20" valign="center" bgcolor="#0048CD"><img src="images/emp.gif" width="4" height="18" border="0" valign="center" alt="" align="left"><a href="#" class="topLinks">Terms and Conditions</a></td>
<td height="20" valign="center" bgcolor="#0048CD"><img src="images/emp.gif" width="4" height="18" border="0" valign="center" alt="" align="left"><a href="#" class="topLinks">All Stores </a></td>
<td height="20" valign="center" bgcolor="#0048CD"><img src="images/emp.gif" width="4" height="18" border="0" valign="center" alt="" align="left"><a href="#" class="topLinks">My Account</a></td>
<td height="20" valign="center" bgcolor="#0048CD"><img src="images/emp.gif" width="4" height="18" border="0" valign="center" alt="" align="left"><a href="#" class="topLinks">Contact Us</a></td>
</tr></table></td></tr>
<tr>
<td valign="top" colspan="2">
</td></tr></table>

</body>
</html>

Marshall

1:02 pm on Dec 23, 2003 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member Top Contributors Of The Month



You can do one of two things. Netscape 4 needs marginheight="0" marginwidth="0" in the body tag or you can use CSS and make a div as follows:

<style type="text/css"> <!--
#content {
position:absolute;
top: 0px;
left: 0px;
}
-->
</style>
Then put you entire page (table) between
<div id="content">
TABLE
</div>

You can use both to cover all the bases.