i have a dropdown menu in css, it works fine in Chrome, FireFox, but not IE8, i haven’t checked it in IE6/7. but it seems hopeless.
my site at HERE.
The dropdown menu is the black one.
i think the problem is with the :hover, try searching around something like #button .a:hover, etc… but get no luck.
I hope you can help. the css file is HERE
Thank you sirs
The problem is that you have not included a doctype on your website.
Because you haven’t included a doctype, your page is rendering in Quirks mode in IE8:
Add these two lines to the very top of your file:
If you add in that magical doctype line, your drop down works in IE8 and IE7.
You should move this part of your code to within your
<body>tag.Also, you can change it to something like this: