Webflow form jumps after submitting

Hey all,

I’m having this issue where after submitting a form, the page sort of jumps away from the “Success Message” and I can’t seem to figure out why. I made sure the div was the same height as the Form itself but that doesn’t seem to solve the problem.

Link to Video - Recording #1


Here is my site Read-Only: LINK
(how to share your site Read-Only link)

Also having problems with this. If I find a solution I’ll post it here

Did someone found solution to this?

Also having this issue… Anyone found a solution?

Hi! have you found a solution for this? i am facing this problem too

Having the same issue

You can prevent the default behavior on form submissions with this. I used it to show a custom success message without the window jump.

<script>
$(document).ready(function() {
  $(".your-form").on("submit", function(event) {
    event.preventDefault(); // Prevent the default form submission
    // Add your custom success message logic here
    $(".success-message").show(); // Example: Show a custom success message
  });
});
</script>