Hello,
I have a website
anders-magic.dk
I want to make the dropdown menu fade in, and not just appear immediately.
Also, can I make it appear from like they do in the ubermenu plugin (fade in from the bottom):
How do I do that?
Thanks!
Hello,
I have a website
anders-magic.dk
I want to make the dropdown menu fade in, and not just appear immediately.
Also, can I make it appear from like they do in the ubermenu plugin (fade in from the bottom):
How do I do that?
Thanks!
Hi There,
Please add the following CSS under Customizer > Custom > Global Javascript
:
jQuery('.x-navbar .desktop .menu-item-has-children').hover(function() {
jQuery(this).children('ul').stop().fadeIn(300);
}, function() {
jQuery(this).children('ul').stop().fadeOut('fast');
});
Hello,
That unfortunately does not seem to do anything:/
Arr i was mistaking! It works perfectly! However is it possible top make it fade up a little from the bottom?
Hey There,
That is technically possible. However, that would fall beyond the scope of our support since it would require custom development.
Thank you for understanding.
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.