Netscape Table Help

liunx

Guest
Good day, I realize I'll never get my website to look exactly how I want in Netscape 4 but I'm trying to get it as close as possible. My problem I can't seem to figure out is why there's a small horizontal space in the table: You can look at here:<br />
<!-- m --><a class="postlink" href="http://backseatkiss.com/indextest.html">http://backseatkiss.com/indextest.html</a><!-- m --><br />
<br />
It looks great in netscape 6+ and i.e. 4+<br />
<br />
My other question is why the lighter background does not show up on the two side columns. My css is simply:<br />
<br />
background-image: url(images/texture.gif);<br />
border: none;<br />
<br />
Well I guess that's it, nothing too major but extremely annoying nonetheless... <br />
<br />
Thanks a lot!<!--content-->Your CSS is from CSS2.<br />
<br />
IE6 doesn't do much CSS2.<br />
<br />
NS4 does hardly any CSS at all.<br />
<br />
<br />
<br />
<br />
Check the errors: <!-- m --><a class="postlink" href="http://validator.w3.org/check?uri=http%3A%2F%2Fbackseatkiss.com%2Findextest.html&charset=%28detect+automatically%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 />
<br />
<br />
<br />
You need to code like this:<br />
<br />
<td> table cell tags and their content on the same line </td><!--content-->Okay so I figured out why the backgrounds weren't showing up on the two side columns, they were empty and when I slipped in a &nbsp; they showed up.<br />
<br />
Now, I have this background corner:<br />
<style type="text/css"><br />
div.corner{ <br />
position:absolute; <br />
height:82px; <br />
width:86px;<br />
background: url('images/corner.gif') no-repeat; <br />
border: none;<br />
} <br />
</style><br />
<br />
<br />
<div class="corner"><br />
Content yada yada<br />
</div><br />
<br />
Obviously netscape 4 doesn't support this so I was wondering if there is a way to go around this.. like maybe a script that says if you're using netscape for do this.. else do this.<br />
<br />
I still can't for the life of me figure out why there's that small space on the top. Argh.<br />
<br />
Thanks again for your help.<!--content-->
 
Back
Top