I would like to have a 2 or 3px padding around the entire form. It sits in the secondary sidebar and currently is pushed up to the left side. Not sure how to fix this.
Any help would be appreciated
I would like to have a 2 or 3px padding around the entire form. It sits in the secondary sidebar and currently is pushed up to the left side. Not sure how to fix this.
Any help would be appreciated
Hi,
You can add padding around your form by adding the following to your theme's stylesheet or wherever you place custom CSS
#gform_widget-3 .gform_wrapper .gform_body {
padding: 0 3px !important;
}
I have applied the padding to the gform_body element rather than the gform_wrapper or even the widget container because applying it to either of them would cause your button image to spill out of the right side of the container.
Regards,
Richard
perfect!
Thanks again
You're welcome.