The Submit Button is included on all Formstack Forms by default. There is not an option to remove the Submit Button; however, you can choose to hide it on the Form if you'd like, making the "Form" an informational web page/landing page rather than a page that requires/expects action. To do this, you will need to add some CSS code to a Custom Theme. Don't worry, it's easy!
First, you'll need a Custom Theme to work with. You can create or edit a Custom Theme inside the Form Builder by selecting the style tab on the top left of the page.
Inside the style section, you have the option to create a new theme by selecting the "Create Theme" button. If you already have a Custom Theme applied, you can hover over that theme and choose the "Make a copy" option to create a new version of your Custom Theme that would only be applied to that specific form. If you're okay with using that theme, go ahead and skip to the next step.
**Note: If you choose to edit the current Theme, these changes will affect all forms that have that Theme applied.
If you don't have a Custom Theme applied, you will not see the "Edit" button while hovering over the theme. If this is a brand new form, a default theme from our library will be applied that you can make a copy of for editing purposes.
Once you're happy with the theme you've created, you'll want to scroll down to the bottom of the editing options until you see a section called "Advanced Code Editor".
On the CSS editor, you'll just need the CSS code below:
.fsSubmitButton {display:none;}
The css will take effect on the preview and you'll be able to see that the button is now hidden. Remember to save your changes at the top and activate for the CSS to take effect on your form.