Hi,
IE 6 does not recognise the :hover pseudo element if it is attached to any selector other than a. So:
Code:
li {color: red;}
li:hover {color: blue;}
will not work in IE ( or opera i think) but will work in most other browsers.
You'll need to apply the hover to the a element in your menu:
Code:
a { color: blue;}
a:hover, a:link, a:visited, a:hover, a:active, a:focus { color: red;}
Or you can force hover to work with elements other than a using some javascript. Just do a search for it in google if you're interested.
Bookmarks