The reason the drop down DIV prematurely disappears sometimes when you move the mouse in from the bottom of the anchor image becomes more clear if you give the anchor a background color to see just what's included by the anchor:
Code:
<style>
#michelin{
background:green;
}
</style>
With the above you should see how the anchor (in this case a DIV) doesn't actually fully engulf the icon inside it, but just partially. So when you move your mouse in from the bottom of the anchor, it hits the green area but then the icon itself (resulting in a mouseout action), causing the revealing DIV to reverse course.
The solution would be either to register the icon itself as the anchor (instead of the parent DIV), or modify the CSS for the later in a way so that it surrounds the child icon snuggly (with no green area showing afterwards).
Bookmarks