Dropdown not working in IE6

kiyas85

New Member
Hi,
Ive added a css dropdown menu to the top navigation of my website:
http://www.lsquaresolutions.com/

It works in IE7, IE8 and firefox but not in IE6. Since its a simple css dropdown i assumed it would work in IE6 too.

Could someone tell me what i'm missing here??

Thanks in advance...
 

PixelPusher

Super Moderator
Staff member
At a glance, don't use the psuedo class (hover) on list items (li) because yeah IE6 will not support it. It only accepts this usage on links. Use display: block and :hover on your links and that should remedy the issue.
 
Top