Hello @pablopicasso ,
Thanks for reaching out to us!
I understood what you are looking for. In response to the query about Megamenu- We haven’t added any controller yet to adjust the Megamenu visibility when the cursor moved from the Menu item. But, you will be able to do so by using custom CSS code. Please copy the CSS code from below and paste it to the Appearance > Customize > Additional CSS section.
@media (min-width: 1025px){
.elementskit-menu-container .elementskit-megamenu-panel {
transition: all .6s ease !important;
}
}
Feel free to change the transition duration(6s) as per your needs. I hope it will help.
Regarding the issue you have mentioned with overlay, we have been able to trace the issue also in our development environment. However, We have a workaround for this issue. Please use the CSS code mentioned below to solve the issue.
@media (max-width: 1024px){
.elementskit-menu-overlay {
left: -100% !important;
}
.elementskit-menu-offcanvas-elements.active {
left: 0 !important;
}
}
Let me know if that helps or if you need further assistance in this matter. We are always here to assist you.
Best Regards,
Prosenjit