Hi folks,
I have a CSS hover menu which works in all browsers except... surprise -- IE6!
#menu_right ul li:hover ul { visibility: visible; }
This ul
is hidden initially, obviously. When I hover over its parent li
, it should show up... but it doesn't.
To try to pinpoint the problem, I've tried making the ul
initially visible and had the hover action take on something else. For example:
#menu_right ul li ul { visibility: visible; }
#menu_right ul li:hover ul { background: red; }
This doesn't help. On other browsers (including IE7+), the ul
will turn red when I hover over its parent list element
. But not in IE6. What am I missing?