Forum Moderators: not2easy
I can see that the body background color and image border color aren't working in Netscape.
I'd suggest running your html through a validator (such as the free validator at the W3C [validator.w3.org] before digging into the css.
Just off the top, you have some <tr> and <td> tags after the closing </table>. Netscape does not forgive bad table tags, so if you clean the HTML first, you'll know better what the css troubles are.
It's possible that your body background isn't showing because you're using that table for layout. Instead of using background-color, see what happens with just the background shorthand.
As far as the image border color goes, try setting the border-width in css and using a specific class, like:
img.withaborderof8 {border-width: 8px; border-color:#666666; border-style: solid;}
Mucho headaches to get CSS to work right with NN4.
Is that only a NN4 problem (styling every cell?) And how does Mozilla compare to NN? My fiancee says that one is based off the other, but I'm still confused.
Also, should I declare a certain element (such as body bgcolor) at the html document level, or should I do all that in CSS?
Thanks Much!
Jessie
Mozilla should be VERY correct. NN4 is VERY bad. IE has always been very forgiving.
But the main thing that I noticed in your external CSS is that you have quotes around your colors: "#000000", for example, you don't need them, and it probably constitutes an error.
And yes, you do need to style many attributes in each cell, as I said.
Your fiance is correct, but it has been a long time from the NN4 versions to the present. Mozilla is much, much, more compliant with CSS.