Hi,
you can increase the time of persistence submenu Mega Menu?
When I move the mouse pointer out of the submenu, I would like to remain visible for 1 or 2 seconds
Thank you very much
Hi,
Open js/avia.js and look for line 828:
item.stop().css('display','block').animate({opacity:0},0, function()
Replace it by this:
item.stop().css('display','block').animate({opacity:0},1000, function()
Regards,
Josue
Hey Josue,
great, it works
Thank you very much :)