After submitting a form in Webflow, the default behavior often scrolls the page to reposition the form’s success message. To prevent this, you can modify the behavior using custom JavaScript. Here’s how:
- Go to Project Settings > Custom Code > Footer Code.
- Add the following script before
</body>
:
```js``` - This script prevents the form from refreshing and manages success/error messages manually without triggering automatic scrolling.
2. Use CSS to Keep the Success Message Visible
- Instead of relying on Webflow’s default behavior, you can enable the success message above the form using CSS.
- Add this to Project Settings > Custom Code > Head Code:
```css``` - This ensures the message does not cause an unexpected scroll shift when it appears.
3. Use Webflow's Built-in Interactions Instead
- If you do not want to use JavaScript, try a Webflow interaction:
- Select the Form Block in Webflow Designer.
- Under Interactions, add a Hide/Show Animation that keeps the success message visible without affecting page scroll.
Summary
To keep the success message from scrolling out of view:
- Use custom JavaScript to override Webflow’s default submit behavior.
- Apply CSS adjustments to keep the message in place.
- Optionally, use Webflow's interactions to control the display.
This solution ensures a smooth user experience without disrupting the page position. 🚀