Lloyd, no problem. You will want to place one of these snippets (whichever you choose) into your theme's stylesheet. This snippet of CSS here will float your image to the right and this would cause all of your forms image submit buttons to do that:
[css]
.gform_wrapper .gform_footer input[type="image"] {
float: right;
}
If you wanted to only have this one form's image submit button float to the right, you could use this more specific, form ID selector instead (this target's only the submit button of form ID #2):
[css]
#gform_submit_button_2 {
float: right;
}
Posted 13 years ago on Wednesday June 13, 2012 |
Permalink