On 11/3/05, Travis F. Smith <[EMAIL PROTECTED]> wrote:
> I'm working on a CSS navigation and I'm stumped by a particular problem.
>
> http://www.bargaintarps.com/index_soon.html
>
> In Firefox/Safari, the left-hand navigation links appear as a cream color.
>
> In IE 6.0 for Windows, the navigation colors are green on green, and
> unreadable.
>
> Any idea why?
>

You have this:

a:link { color:green; }

#nav a { color:cream; }

in FF, the #nav a overrides the green with cream, but in IE it does
not. "a" is not exactly the same as "a:link"

change a:link to just a, or do:

#nav a, #nav a:link { }

--
--
C Montoya
rdpdesign.com ... liquid.rdpdesign.com ... montoya.rdpdesign.com
______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to