Hi,
I roamed the forum for an answer and the only ones are from 2015, the file structure is not the same. How can I make the dropdowns appear and disappear faster? The animation overlaps, if you have a megamenu and a regular dropdown next to eachother.
Thanks in advance.
Hey midfieldco,
Thank you for the inquiry.
You have to modify the js > avia-snippet-megamenu.js file directly in order to adjust the dropdown animation speed. Look for this code around line 207:
currentLink.on('mouseenter', function()
{
sublist.stop().css({visibility:'visible'}).animate({opacity:1});
});
Add the duration of the animate function in milliseconds.
ccurrentLink.on('mouseenter', function()
{
sublist.stop().css({visibility:'visible'}).animate({opacity:1}, 100);
});
Best regards,
Ismael