You are viewing limited content. For full access, please sign in.

Question

Question

Center the Submit Button

asked on February 17, 2016

I am sure this question has been asked previously and I have trawled through the Answers site with no luck!

 

But could someone please inform me how to center the 'Submit' within my form?

 

I imagine it is a quick fix, so any and all responses are appreciated!

 

Thanks,

 

Christian

Submit Button.JPG
0 0

Answer

SELECTED ANSWER
replied on February 17, 2016

CSS offers a number of different ways to center things. One of the simplest I've found is to change the button and it's DIV container to block elements, and then set the margin on the button to automatic. See if this works for you (paste into your CSS section):

div.btn-wrapper {display:block}
.Submit {display:block;margin:auto}

 

8 0

Replies

replied on February 17, 2016

Thanks Scott, that worked great!

 

Just what I needed - thanks!

0 0
You are not allowed to follow up in this post.

Sign in to reply to this post.