I'm wanting to center my custom "Submit Form" button instead of it being aligned left, but I can't seem to find the controls to adjust the padding or margin. Does anyone know where I can find the parameters to do this. Thanks.
I'm wanting to center my custom "Submit Form" button instead of it being aligned left, but I can't seem to find the controls to adjust the padding or margin. Does anyone know where I can find the parameters to do this. Thanks.
try this.. it worked in my quick test.
.gform_footer {text-align:center;}
or, if you want to target the image button specifically (and hide the border)
.gform_footer input[type="image"] { border:none!important; margin:0px auto; display:block}
It also looks like you're still getting the bullet background images showing.. you can check out the FAQ page for a quick fix for that as well.
http://www.gravityhelp.com/frequently-asked-questions/faq-styling/
Thanks Kevin. That did the trick.