To set a Webflow page to automatically scroll down by 600px upon load, you will need to use custom code in your project settings. Here's how you can achieve this without affecting any page elements:
1. Use Custom Code in Page Settings
- Go to Page Settings: Navigate to the specific page in the Webflow Designer.
- Access the Page Settings: Click on the gear icon next to your page name to open settings.
- Add Custom Code: Scroll to the Before </body> tag section in the Page Settings.
2. Insert JavaScript Snippet
- Write the JavaScript: Insert the following JavaScript into the Before </body> tag section to automatically scroll the page.
```plaintext
<script>
window.onload = function() {
window.scrollTo(0, 600);
};
</script>
```
- Ensure Proper Placement: Place this script tag inside the section mentioned to ensure it executes after the page loads.
3. Publish Your Site
- Save and Publish: Save the changes in your Page Settings and publish your site to see the effect live.
4. Test the Scroll Function
- Verify the Scroll Effect: Once your site is published, visit the page to ensure it scrolls down by 600px automatically upon load.
Summary
To achieve an automatic scroll effect of 600px on a Webflow page without affecting other elements, insert a JavaScript snippet into the Before </body> section of your page settings. This will execute the scroll action once the page finishes loading.