Hi there,
I have read different threads on how to remove dropdown animations, as it is overlayed one to the other… so it is really ugly.
I have added following CSS and JS to the theme option. It removes the fade-in/out, but there is still a delay of a few seconds when it should disappear. Could you please help me?
body .x-masthead .x-anchor,
body .x-masthead .x-interactive,
body .x-masthead .x-dropdown.x-active {
transition-delay: 0s, 0s, 0s !important;
transition-duration: 0s, 0s, 0s !important;
transform: translate3d(0, 0, 0) !important;
}
@media ( min-width: 980px ) {
li.menu-item-has-children > ul {
display: none !important;
}
li.menu-item-has-children:hover > ul {
display: block !important;
}
}