Tagged: submenu
Hi! How can i make the normal submenu (not megamenu) disappear slower? it tends to get hidden too soon to let the user click the links.
Thanks in advance
Hey mariocarabotta!
Open js/avia.js.
Go to line 696:
sublist.stop().animate({opacity:0}, function()
Replace it by this:
sublist.stop().delay(300).animate({opacity:0}, function()
That will add a delay of 300 milliseconds before disappearing. You can change that number if you want it slower or faster.
Best regards,
Josue