Hello and thank you everyone for contributing to this forum.
Here is my situation.
The page seems to be Ok in IE but not in Netscape.
I created a table for the main content area and want the bg to be white. Netscape is picking up the background image.
This is the CSS code:
body { background-image: url(cccc99_background.gif);
background-attachment: fixed;
background-color: #cccc99;
color: #000000;
font-family: "Antiqua SSi", Arial, helvetica, sans-serif;
font-size: 12px;
}
This is the url: http://www.ncrfis.com/WCIFL/shelving_wire.html
Any help is appreciated. Thank You #-o
Netscape Background Image Problem
Hi
This is what comes from designing for IE Windows and then seeing if it will work in Moz
If you look at your table definition, you will see you have:
<table width="100%" bgcolor="ffffff">
which will work in IE, coz it doesn't care!
It should be
<table width="100%" bgcolor="#ffffff">
(notice the hash)
Trevor
I got it...
I got it....Duh! :oops:
What a silly mistake I made.
I see the problem.
In addition, what you are saying is to design for Netscape or Moz.
Good point.
Thanks for your help.