A Page Section anchor link often fails to scroll to the correct position on initial page load due to timing issues—usually caused by late-loading content such as custom fonts, images, or scripts shifting the layout after the anchor scroll is triggered.
example.com/#services
), the browser attempts to scroll to that element as soon as possible.tag, you can add a script that scrolls manually after a delay.
#anchor
to scroll automatically, use Webflow’s built-in scroll interactions or the "Scroll Into View" behavior triggered on load via built-in animations.window.onload
).display: none
or hidden on page load.The anchor link is likely not scrolling to the right place because content hasn’t fully loaded when the browser attempts to scroll. Use a delayed JavaScript scroll, audit for layout shifts, and consider Webflow-native scroll animations to ensure reliable behavior.