One page animation scrolls to far

Hey there,
my one page navigation works, but It scrolls too for down for my taste. this is a problem on mobile. how can I fix this?
Thanks for your help!

Hi @ZerotoOneaerial,

I have just checked your site on mobile and the scroll area is correct. What you can do is you can increase the top padding of the Contact section so that there’s gonna be more space on the top of the section.

To do that, please add this code in the Element CSS of the section:

@media (max-width: 480px) {
    $el.x-section {
        padding-top: 120px !important;
    }
}

https://theme.co/docs/element-css

Hope this helps.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.