Netscape 4.79 Messes my site!!!

windows

Guest
Hello there,<br />
<br />
I just fisnished a website off a template I bought at boxedart.com. For some weird reason, when I look at the site in netscape 4.79 it looks out of place and<br />
its just a mess.<br />
<br />
On the other hand, Netscape 7.0 and Interenet Explorer looks perfect, I have a feeling that this has to do with html code.<br />
<br />
Please help, I'm desperate and I need to turn in this website soon, please see it for yourself at:<br />
<br />
<!-- m --><a class="postlink" href="http://www.loscabostoday.com/santafe">http://www.loscabostoday.com/santafe</a><!-- m --><br />
<br />
Thanks so much in advance<!--content-->Make sure that the internal table data code goes on the same line as the starting and ending table data tags:<br />
<td>blah blah blah</td><br />
<br />
There are a couple of wrongly nested </p> tags in the code.<br />
<br />
This link gives a [list (<!-- m --><a class="postlink" href="http://validator.w3.org/check?uri=http%3A%2F%2Fwww.loscabostoday.com%2Fsantafe%2F&charset=iso-8859-1+%28Western+Europe%29&doctype=HTML+4.01+Transitional&ss=1&outline=1&sp=1&verbose=1">http://validator.w3.org/check?uri=http% ... &verbose=1</a><!-- m -->)].<br />
<br />
Fix those and see if you still have a problem.<!--content-->There is also the problem that Netscrape 4.x does not do CSS very well at all. If you absolutely need people with Netscrape 4.x to view your site, then make sure that the site is useable without CSS. Then you can link to the CSS using<br />
<br />
<style type="text/css"><br />
@import url(santafe.css);<br />
</style><br />
<br />
instead of<br />
<br />
<link rel="stylesheet" type="text/css" href=http://www.htmlforums.com/archive/index.php/"santafe.css"><br />
<br />
which is what you have now. The reason for this is Netscape 4.x does not recognize the @import command, so it doesn't try to butcher the css.<!--content-->
 
Back
Top