I’m trying to finish up a template and in ie 6 i’m not getting a correct font color for a menu item.
http://onitindustries.com/templates/designcom/index.html
that is what i’m working on. in ie6 the main navigation links 1 and 3 aren’t supporting the color.
this is the css for it.
ul.dropdown li a.mainLink { color: #b5cf5f; }
any ideas?
I’m trying to finish up a template and in ie 6 i’m not getting a correct font color for a menu item.http://onitindustries.com/templates/designcom/index.html
that is what i’m working on. in ie6 the main navigation links 1 and 3 aren’t supporting the color.
this is the css for it.
ul.dropdown li a.mainLink { color: #b5cf5f; }
any ideas?
my guess would be because your using multiple classes on the dropdown menu try just and see if it changes it
li a.mainLink {
color: #b5cf5f;
}
try to complete tags a
ul.dropdown li a.mainLink:link,
ul.dropdown li a.mainLink:visited {
color: #b5cf5f;
}
I hope this helps… 
try to complete tags aul.dropdown li a.mainLink:link, ul.dropdown li a.mainLink:visited { color: #b5cf5f; }I hope this helps…![]()
that did the trick.
thanks to both of you =0]
try to complete tags aul.dropdown li a.mainLink:link, ul.dropdown li a.mainLink:visited { color: #b5cf5f; }I hope this helps…![]()
that did the trick.
thanks to both of you =0]
yes that should fix it, I tried it many times in IE6 
