Reputation: 8106
I have an upper horizontal menu structure that when you hover over one of the menu items a pulldown sub-menu appears
When you go to any other page in the site, you are able to hover over the Services menu item and the sub-menu dropdown appears.
The only time is does not is when you are on the Services landing page itself.
I would like to get the pulldown to apear when you are on the Services page iteself.
Can anyone help?
Upvotes: 0
Views: 59
Reputation: 167172
This looks like a z-index
issue. On the hover, use:
z-index: 3 !important;
In the services page, for some reason, this following line takes in precedence:
ul#menu-main-menu li.current-menu-item ul.sub-menu {
z-index: 1 !important;
}
You need to find that as it generates on the page and remove it.
Upvotes: 2