0 replies on 1 page.
In some cases, Dropdown Menu with CSS does not work as well on IE 6.
It only works on the later browser as IE7, IE8, Mozilla Firefox and ect
How do you fix that?
First, you need to download the file whateverhover.htc here and put it in CSS folder
Add the below code inside the <HEAD></HEAD> tag in the html file:
<!--[if gte IE 5.5]>
<![if lt IE 7]>
<style type="text/css">
div {behavior: url(css/whateverhover.htc);}
</style>
<![endif]>
<![endif]-->
Now CSS should works fine on all browsers and IE 6 will not have a problem.
Did you like this tip? {fblike}
Read: CSS: Dropdown menu does not work on IE 6 ?