Keep Submenu visible if subpage selected

Hi Jade,
thank you for your quick reaction. I usually are VERY happy about the really great themco support, but right now, I don’t agree …

You wrote:

The menus in the header builder works natively as expected

I’d only like to have a working horizontal menu with horizontal submenu. Is this part of the native functions of the header builder or does it support only vertical menus?

If horizontal menus are supported, the only thing I want is to have that running proper.

Best regards

Uli

Hi Uli,

The horizontal sub menu is fine, the problem is making it show for the current page and mixing it with the hover effect.
The menu is not designed for that and the code to achieve it is tricky.

For the last time, you can try adding this in Theme Options > CSS

.grk-menu li.menu-item.current-menu-item .sub-menu {
    pointer-events: auto !important;
}

Then add this in Theme Options > JS

jQuery(function($) {
    $('.x-menu > li > .x-anchor').hover(
         function(){   $('.x-menu > li > .x-anchor').not(this).next('.x-dropdown').removeClass('x-active'); }
    ); 	
});

As stated from previous replies, further customization from here would be getting into custom development which is outside the scope of our support.

Thank you for understanding.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.