• Resolved growthdynamix

    (@growthdynamix)


    Thank you for this plugin! Big fan

    I’ve run into this issue whenever I resize the window. The nav bar in the top right is sometimes delayed and has an unintentional bouncing animation to fit into the new window

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

Viewing 1 replies (of 1 total)
  • Plugin Contributor Robert Wattner

    (@rwattner)

    Hi, this is because elementor puts a transition all 0.4s on the menu links. This affects the padding changes(horizontal spacing/space between, when changing screen sizes. So you’re seeing the padding slowly change and it makes the links shift around. This isn’t my plugin doing this but you can remove the transition from the padding with this CSS

    /* REMOVE MENU LINK PADDING TRANSITION */
    .elementor-nav-menu--main .elementor-nav-menu a {
        -webkit-transition: all 0.4s ease, padding 0s !important;
        -o-transition: all 0.4s ease, padding 0s !important;
        transition: all 0.4s ease, padding 0s !important;
    }

    I hope this helps. Let me know

Viewing 1 replies (of 1 total)

The topic ‘Re-Size Window Lag/Bounce’ is closed to new replies.