I think I see what you mean. On some of the pages, unless you move the mouse really quickly from the trigger to the dropdown, it disappears before you have a chance to click on any of the items.
If that's what you're talking about it's because there's a 1px gap between where the bottom of the trigger ends and the top of the dropdown begins. I'm not sure why this is only happening on some pages. It seems to be happening on all pages except the home page. The home page has:
Code:
<link href="homestyles.css" rel="stylesheet" type="text/css">
The other pages:
Code:
<link rel="stylesheet" type="text/css" href="twoColstyles.css">
This probably is the cause, but I cannot be sure.
What I would try first is add this to the twoColstyles.css file:
Code:
.ddsubmenustyle, .ddsubmenustyle ul {
margin-top: -1px !important;
}
The browser cache may need to be cleared and/or the page refreshed to see changes.
That should take care of it for IE 9. Even if it doesn't, leave it in place so I can check to see why. It did take care of it here, using IE 9 Developer Tools. However, it might mess up how it looks in others. If so, let me know and we can make the change specific to IE 9.
Bookmarks