Must have mega menu in pro, need help with 1 css property

Hi,

I’m currently building a site that requires the submenu links be displayed in line. I’ve done so with a menu plugin, but when you hover over the “mega menu” I need to put a ease out transition delay on the submenu to prevent it from defaulting back to display none while moving the mouse to the sublink. I’ve tried every class I can find and every trick I know, but can’t figure it out. Let me know what you guys think…

beta.napleswebscapes.com

Thanks,
Dennis

Hi Dennis,

Thank you for writing in, try adding this to Theme Options > JS

jQuery(".hmenu_submenu.hmenu_mega_sub.hmenu_drop_devider").mouseout(
    function() {
        jQuery(this).delay(800).fadeIn();
    }
);

Regretfully, we cannot really provide support for third-party plugins as our support policy in the sidebar states due to the fact that there is simply no way to account for all of the potential variables at play when using another developer’s plugin. Because of this, any questions you have regarding setup, integration, or troubleshooting any piece of functionality that is not native to X will need to be directed to the original developer.

Thank you for your understanding.

Hi,

I did add this code, however, the delay must be applied to the top link as it disappears when you hover off the main link. The submenu should delay close. The script you gave me works, however it applies the transition delay after hover off the submenu link.

Thanks,
Dennis

Hi Dennis,

You mean the transition between texts so the background/box remain visible? I’m not sure if it’s possible but I recommend contacting the plugin author. It’s a 3rd party plugin so the code provided above is just a basic one that fades the entire block.

Thanks!

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