I am trying to show another UL within an Li in IE 6 which is a dropdown menu. Here’s what I have.
ul.dropdown li:hover > ul
{
visibility: visible;
border: 1px solid #cccccc;
width: 92px;
background-color: #eeeeee;
}
Now this does not work in IE6 and I wanted to know if there is a fix/hack for this without using Javascript.
I found this QA but somehow I think that my :hover is interfering with this.
Can someone help please?
Thanks!
Turns out the solution is to use jQuery from the example we’re using. Thanks guys