• Resolved pablopicasso

    (@pablopicasso)


    Hello,
    when the cursor goes off the megamenu, it disappears immediately. I would like it to be visible for about 200-300ms more.

    I discovered an css issue on the laptop view, a dark box appears on the left (https://imgur.com/aLD8UNI).

    Thanks in advance for your help.

    The page I need help with: [log in to see the link]

Viewing 3 replies - 1 through 3 (of 3 total)
  • 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

    Hello @pablopicasso ,

    Hope you’re doing well. We haven’t received any update from you till the last response and hope that you’ve solved the issue. For that reason, we are marking it as resolved. Feel free to create a new thread if you need further assistance. We are always here to assist you.

    Best Regards,
    Prosenjit

    Thread Starter pablopicasso

    (@pablopicasso)

    Hello,
    apologies for digging up the topic, but I have been on holiday. Mega menu looks better now after adding the code, but I would like to also have possibility to stop the fading animation when cursor is over the mega menu again.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘mega menu and laptop view issue’ is closed to new replies.