Webflow sync, pageviews & more.
NEW

How do I prevent the success message from scrolling out of view to the bottom of the page after submitting a form on a site built in Webflow?

TL;DR
  • Add custom JavaScript in Project Settings > Footer Code to prevent form submission from triggering scroll behavior.
  • Use CSS in Head Code to keep the success message visible without shifting the page.
  • Alternatively, use Webflow Interactions to manage the success message display without affecting scrolling.

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:

1. Add Custom JavaScript to Prevent Scrolling

  • 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:

  1. Use custom JavaScript to override Webflow’s default submit behavior.
  2. Apply CSS adjustments to keep the message in place.
  3. Optionally, use Webflow's interactions to control the display.

This solution ensures a smooth user experience without disrupting the page position. 🚀

Rate this answer

Other Webflow Questions