Is it possible to disable the fade in/out of the mega menu? We would like to have the sub-menu appear right as the cursor hovers over the link in the main navigation.
Hi LSpicer!
Thank you for using the Enfold theme.
Please add this on Quick CSS or custom.css:
#header .avia_mega_div {
opacity: 1 !important;
}
Best regards,
Ismael
Thank you, that resolved the fading. Is there a way to remove the delay when the menu first appears and when it disappears once I move my cursor off of it? There seems to be about a 1 second delay for appearing and disappearing.
Hey!
In wp-content/themes/enfold/js/avia.js replace:
$(".main_menu .menu").aviaMegamenu({modify_position:true});
with
$(".main_menu .menu").aviaMegamenu({modify_position:true,delay:0});
This should remove the delay of 300ms.
Cheers!
Peter
Thanks! That took care of the delay.