Change behaviour of success message

In the default state when a form is submitted, the form field will be hidden and the success message is displayed in it’s place. How can you change this behavior? I would like to display the form field even after a user submits a form and have the success message displayed below.


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

Did you ever figure it out?

Add an embed on your page like below.
Change the form ID, here #email-form to your own.

This will ensure the browser doesn’t hide your form even when Webflow.js adds the style="display: none;" after a successful submission.

<style>
form#email-form {
    display: block !important;
}
</style>