Customize submit button on Form

Evine Beursken asked on December 22, 2016 12:12

Is there an easy way to customize the submit button on the form tab. The button is not in my custom layout an I can only alter the text of the button in the general tab of the form.

How can I change its style?

Correct Answer

Roman Hutnyk answered on December 22, 2016 12:55

You should be able to do this with CSS. For example you could wrap your form with a DIV and set either a class or id for it. Let's pretend you set an id='form-wrap'. Now you can defice CSS for it like this:

#form-wrap input[type=submit] {
  your styles
}
1 votesVote for this answer Unmark Correct answer

Recent Answers


Evine Beursken answered on December 22, 2016 14:16

I looked up the id of the button and than added styles in my css referring to that id. A div around the total form added styles to everything so that did not work. Thanks for your help!

0 votesVote for this answer Mark as a Correct answer

   Please, sign in to be able to submit a new answer.