How to hide a submit button on form (because they don't need to submit it!)

I have a form where a user enters their details and it creates a calculation. There is no need for them to submit the form because they get the answer via an expression output.

Is there any way I can hide the submit button on this particular page? Having difficulty surfacing code via CSS because the button is just the plain old submit button.

Also would be fine if I could make it so pressing submit did nothing!

Thanks

Hi,

Replace view_1 with your view number in the code below:

#view_1 button[type="submit"] {
  display: none;
}
1 Like

Thanks, worked a treat!