Hi,
The menu the website I develop has some quirks in Internet Explorer 7 (IE7). One of them is one that happens only occasionally. You can see what I mean in the attached image, or life at http://nvfb.hermod.nl. It is when the browser looses focus, while a menu is open, and gets the focus back, the menu is not closed.
What do I need to do to solve this particular problem?
The Javascript code I use for the menu is:
Attachment | Size |
---|---|
quirky_ie7.JPG | 42 KB |
I think this is probably
I think this is probably what you want: http://www.builtfromsource.com/2006/10/23/a-fix-for-suckerfish-dropdowns-in-ie-7/
Thanks for your reply. I
Thanks for your reply.
The website states
Luckily, the fix for this is pretty simple. Assuming your unordered list menu ID is “menu”, you just need to add the following code to your stylesheet:
#menu li:hover, #menu li.hover {
position: static;
}
My code looks like
#mainlevelmainnav li:hover ul ul, #mainlevelmainnav li:hover ul ul ul, #mainlevelmainnav li.sfhover ul ul, #mainlevelmainnav li.sfhover ul ul ul{ left: -999em; }
Would that mean I add position: static; to this code?
#mainlevelmainnav li:hover ul ul, #mainlevelmainnav li:hover ul ul ul, #mainlevelmainnav li.sfhover ul ul, #mainlevelmainnav li.sfhover ul ul ul{ left: -999em; position: static; }
Macamba
No, this, an a variation,
No, this, an a variation, breaks my menu. So I need to find another way to add position: static; to my CSS.