You can try a couple different things. One approach would be to make space for the button and to move the button up with CSS.
[css]
/* this will make space for the button */
body .gform_wrapper #field_6_18 {
margin-bottom: 80px;
}
/* this will move the button up */
body .gform_wrapper #gform_submit_button_6 {
position: fixed;
bottom: 350px;
}
The second approach would be to add an HTML block to your form and add the submit button to it. Add the block right in the form where you want the button to appear. This would be the content of the HTML block:
[html]
<input type='submit' id='gform_submit_button_up' class='button gform_button' value='Submit' tabindex='37' />
(note the different ID here so that our CSS rule below does not apply to our new button)
Then hide the real submit button with CSS:
[css]
body .gform_wrapper #gform_submit_button_6 {
display:none!important;
}
Let us know if either one of those approaches works for you.
Posted 12 years ago on Wednesday October 3, 2012 |
Permalink