N. Ali
N. Ali

Reputation: 17

Son of Suckerfish Menu in IE8 closes before links can be selected

So, I've managed to get a "Son of Suckerfish" menu to work in IE8, great. However, there is a problem with the menu in which it doesn't stay "open" long enough for users to click the revealed links. As soon as a user's cursor leaves the link triggering the menu, even if they move below the trigger to select the revealed items, the menu closes back up.

Could someone help me fix my code so that the menu stays open long enough for it to be used, like in Safari, Firefox, et cetera?

Thanks!

Upvotes: 0

Views: 496

Answers (1)

JakeParis
JakeParis

Reputation: 11210

Generally speaking (in lieu of seeing any of your code), this is caused by the submenu not touching any part of it's :hover caller (it's parent element). So you can debug this yourself by outlining the elements in question (either with the IE Developer Bar) or by adding outline: 1px solid red; to both elements in your css file. Once you see where the parent element ends and the submenu element begins, you will most likely find that they don't overlap.

Give them a good solid overlap and you will be in business.

Upvotes: 1

Related Questions