How to have Submit button centre align

Hello,

I can’t work out how to have my button at the bottom of the form centre aligned… I’ve tried using margin: auto; in the custom CSS, but nothing seems to work.

Please tell me there’s a simple fix?

Cheers!

Hi @auspiciousartsincub2,

Just tried this in the Custom CSS section and it worked to center the Submit button:

._submit {
display: block;
width: 100px;
margin: 10px auto;
}

Let me know if that doesn’t work for you, though.

Cheers!

Perry

1 Like

Thanks Perry and auspiciousartsincub2! I am glad someone asked the question for me.