I hope this is the right section to post this.
I have been working on a website for a business and I'm trying to make a drop-down menu in CSS. It works great in Firefox
but not in Internet Explorer.
Here is the CSS part of the Code, does anyone know what I might do so it works in IE?
CODE
li ul {
display: none;
}
li:hover > ul {
display: block;
float:left;
background-image:url(img02.gif);
position:absolute; top:25px;
}
Thanks in Advance.
If I posted this in the wrong section please move it for me.