I'm having issues getting the submit button on the form in the footer to be placed to the right of the input field.
Can anyone assist me with this? I've looked and used Firebug and just can't figure it out.
Thanks much!
Louise
I'm having issues getting the submit button on the form in the footer to be placed to the right of the input field.
Can anyone assist me with this? I've looked and used Firebug and just can't figure it out.
Thanks much!
Louise
Hey Louise, this could work for you:
[css]
div.gform_wrapper .gform_footer {
border: none;
margin: -52px 80px 0 0;
padding: 0;
float: right;
}
Also, unless this is the only form on your site, you may want to get more specific with that footer selector, maybe something like this to target only this form and only in the widget as well:
[css]
#gform_widget-2 div.gform_wrapper .gform_footer {
border: none;
margin: -52px 80px 0 0;
padding: 0;
float: right;
}
Thank you! That worked as needed. Now I understand for the future!
Louise
Awesome Louise, glad to help!