Hey there
I’ve got a query that relates to one of my earlier support requests.
I’ve applied some heavy CSS modifications to the submenu and megamenu and need to remove the transition so that when you hover between menus they don’t overlap whilst fading.
The code i’ve tried is
#top #avia-menu .sub-menu {
opacity: 0 !important;
}
#top #avia-menu li:hover > .sub-menu {
opacity: 1 !important;
}
#top #avia-menu .avia_mega_div .sub-menu {
opacity: 0 !important;
}
#top #avia-menu li:hover > avia_mega_div .sub-menu {
opacity: 1 !important;
}
but the megamenu text and icons disappear?.
Any help would be very much appreciated.
Richard
Hey Richard,
Did you remove this css? It looks fine on my end.
Best regards,
Victoria
Hey Victoria
I didn’t leave the CSS as it didn’t help me achieve the result. I’m trying to remove the fading transition when you move the cursor between the two sub menus.
Richard
Thanks Victoria. With a few tweaks I think i’ve sorted with CSS only:
#top #avia-menu .avia_mega_div {
opacity: 0 !important;
}
#top #avia-menu li:hover > .avia_mega_div {
opacity: 1 !important;
}
Thanks
Richard