Here is my page:
http://www.karate-usa.com/test-page/
Need the submit button on the same line as the input fields.
Here is my page:
http://www.karate-usa.com/test-page/
Need the submit button on the same line as the input fields.
You'll need to target the elements with some custom CSS rules.. position the form footer div with the button to the right. This should get you started. This is specific CSS for your form ID# 13
[css]
/* set a height so the background shows properly */
body #gform_wrapper_13 {
position: relative;
height: 90px
}
/* size and position the form footer with button */
body #gform_wrapper_13 .gform_footer {
width: auto !important;
position: absolute;
right: 0
}
/* set max width on form to make room for button */
body #gform_wrapper_13 ul#gform_fields_13 {
max-width: 85%;
}
test screenshot: http://bit.ly/JrelLO
You should be able to take it from there. Don't forget these sample CSS selectors too if you need help.
http://www.gravityhelp.com/documentation/page/CSS_Targeting_Samples