On 21/11/2007, cromeis <[EMAIL PROTECTED]> wrote:
> #nav li:hover, #nav li.sfHover,
> #nav li:hover a, #nav li:sfHover a,
> #nav a:hover, #nav li a:hover,
> #nav a:focus, #nav a:active {
> color:#51749F;
> background:#ffffff;
> text-decoration:line-through;
> }
Oh sorry, I made an error. I put a colon in front of sfHover but it
needs to be a period to denote a class. Considering my error, it makes
sense that it still does not work in IE6. Try correcting the code so
it will be like this:
#nav li:hover, #nav li.sfHover,
#nav li:hover a, #nav li.sfHover a,
#nav li a:focus, #nav li a:hover, #nav li a:active {
color:#51749F;
background:#ffffff;
}
Notice I also slightly tweaked some of the other selectors to ensure
their reliability. I still have hope that this will fix your issue.
Joel Birch.