Hello, I would like to move the submit button over to the far right instead of the far left. How do I do this? Thanks!
My web page w/form is at: http://paulreverehomes.com/#questionnaire
Hello, I would like to move the submit button over to the far right instead of the far left. How do I do this? Thanks!
My web page w/form is at: http://paulreverehomes.com/#questionnaire
Subscribing to email for this post
You would just align the contents of the form footer to the right. You can find out how to properly do that in the documentation.
http://www.gravityhelp.com/documentation/page/CSS_Targeting_Samples#Form_Footer
[css]
body #gform_wrapper_1 .gform_footer {
text-align:right;
}
screenshot: http://grab.by/anZh
Thanks again Kevin!