I've been trying to create a dropdown menu using straight CSS. When you hover over the menu in Firefox, the dropdown shows up perfectly. In IE7, the dropdown doesn't show up at all. For the life of me, I cannot figure out why.

CSS is here: http://pastebin.com/eiWndMeq

Demo: http://www.josephruscitti.com/client-concept/niki/

link|improve this question
feedback

2 Answers

up vote 0 down vote accepted

In the CSS you provided, changing top: auto; to top: 20px; on line 57 works in IE7. Seems that IE7 just needs a little bit more guidance.

link|improve this answer
That seems to work, thanks! – Joseph Feb 8 at 5:02
feedback

add a 1 px transparent image to the background-image to your drop down. It's a hack that will fix the drop down for IE.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.