• Resolved nitro12345

    (@nitro12345)


    Hi there!
    I’m facing a scroll issue with Elementor on the page linked above.
    There are multiple buttons linking to one CSS ID #pricing1
    When clicking the button it works the first time but after click other buttons it jumps up and down.

    Please advise or let me know if you need more info/video etc.

    PS: I did check Checkbox “Prevent other scripts from handling plugin’s links”

    • This topic was modified 2 months, 2 weeks ago by nitro12345.

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

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author malihu

    (@malihu)

    Hello,

    For some reason there’s a CSS rule which sets the height of the root element (html and body) to 100%. This cause the issue. I don’t know why this rule is there but resetting it by adding the following to your CSS fixes it:

    html, body{
    height: auto;
    }

    Let me know

    Thread Starter nitro12345

    (@nitro12345)

    You’re the best!
    That was the issue – we put this in CUSTOM CSS to avoid Safari/iPhone issues with scroll/overflow -that seem to interfere:

    OLD CODE (that made it not work)

    html,
    body {
    height: 100%;
    overflow-x: hidden;
    transform: translate3d(0, 0, 0);
    }

    Plugin Author malihu

    (@malihu)

    Awesome! Glad I helped and thanks a lot for the donation ??

Viewing 3 replies - 1 through 3 (of 3 total)
  • You must be logged in to reply to this topic.