To ensure your Webflow page always starts scrolling from the beginning when updating, you need to check a few settings and possibly add some simple interactions.
1. Set Initial Page Load
- Open your Webflow Designer and ensure that your page has no lingering scroll states.
- No scroll animations should interfere with the initial position unless intentional.
2. Check Interactions Settings
- Go to Interactions (IX2) in the Designer panel.
- Ensure you have no interactions set to change the scroll position on page load.
3. Adjust with Custom Code If Necessary
- Go to the Page Settings and scroll to the Custom Code section.
- If needed, add a small piece of JavaScript that sets the scroll position to zero:
window.scrollTo(0, 0);.
4. Browser Caching
- Make sure caching is not retaining the scroll position. This can be adjusted in the browser settings or by using custom meta tags for cache control.
Summary
To ensure your Webflow page starts from the top when updated, adjust any potential settings or scripts that might change the scroll position, and ensure no interactions are causing unintended scrolling on page load.