Trying to figure out how to remove inline styles added by jQuery on hover from the current menu item in the navigation. I want the current menu item to remain visible even after hover, but jQuery is setting it to display:none.
I attempted to add "display:block;" to the CSS for .current-menu-item, but the jQuery triggered on hover overrides this with inline style="overflow: hidden; display: none;"
<li id="menu-item-33" class="menu-item menu-item-type-post_type menu-item-object-page current-menu-item page_item page-item-31 current_page_item menu-item-33"><a href="http://clients.weinsteinau.cgvcreative.com/opportunities/">Opportunities</a></li>
To reproduce the issue: 1. Visit:
Notice that the corresponding menu item for the page is shown under the navigation
Hover over the nav
Observe that the name of the page disappears from the navigation
Expected behavior: Hovering over the nav should display all items. After hover, the current menu item should still be displayed as block for user visibility.
Your assistance is greatly appreciated. Thank you!