I'm trying to get Netscape (7.1) to recognize my css background-image style. Here is the HTML:
<td id="left">
Here is the CSS:
td#left {
background-image: url(/apex-modular-homes-images/left_apex_homes_nav.gif);
background-repeat: no-repeat;
background-color: #406358;
width: 116px;
vertical-align: top;
text-align: right;
padding: 4px;
}
I know that Netscape is recognizing the CSS file b/c I can get some of the css to take in other elements. It seems its the id and class selectors that are not working. Also, I put all this in the html using a style attribute as follows and it works fine:
<td id="left" style="background-image: url(/apex-modular-homes-images/left_apex_homes_nav.gif);
background-repeat: no-repeat;
background-color: #406358;
width: 116px;
vertical-align: top;
text-align: right;
padding: 4px;">
Anybody know what gives? I seem to be seeing comments that say both that you can and can't do this with Netscape.
Thank you for any suggestions!
<td id="left">
Here is the CSS:
td#left {
background-image: url(/apex-modular-homes-images/left_apex_homes_nav.gif);
background-repeat: no-repeat;
background-color: #406358;
width: 116px;
vertical-align: top;
text-align: right;
padding: 4px;
}
I know that Netscape is recognizing the CSS file b/c I can get some of the css to take in other elements. It seems its the id and class selectors that are not working. Also, I put all this in the html using a style attribute as follows and it works fine:
<td id="left" style="background-image: url(/apex-modular-homes-images/left_apex_homes_nav.gif);
background-repeat: no-repeat;
background-color: #406358;
width: 116px;
vertical-align: top;
text-align: right;
padding: 4px;">
Anybody know what gives? I seem to be seeing comments that say both that you can and can't do this with Netscape.
Thank you for any suggestions!