Form without send button
I want to make a form to put on my website.
It is a form with questions for someone to get a recommendation which course to start.
I use HTML code in the answers with conditional logic.
Therefore, people do not need to submit the form to see their choice.
Is it possible to remove the send button?
Add the following to the Custom CSS/JS section:
.hidden {
display: none !important;
}
Then, in the form, click on the submit button, go to Advanced Options and add hidden to the Container Class.
Thomas OatesΒ thank you. It worked!
for future reference, you can use the built in class ff-hidden. There are other built in classes available too - https://fluentforms.com/docs/how-to-use-css-ready-classes/