Hello @WaggingLabs,
Thanks for writing in!
Please be advised that the sub menus will be displayed through the hover events of the parent menu item. If you want to eliminate the few seconds of transition, then you may use this code instead:
ul.sub-menu.x-dropdown.x-active {}
body .x-menu-inline .x-dropdown,
body .x-menu-inline .x-dropdown.x-active {
transition-duration: 0s !important;
opacity: 0;
visibility: hidden;
}
body .x-menu-inline>li:hover .x-dropdown,
body .x-menu-inline>li:hover .x-dropdown.x-active {
transition-duration: 0.5s opacity ease !important;
opacity: 1;
visibility: visible;
}
We would loved to know if this has work for you. Thank you.