Ok delete those other css rules from the above post. So using chrome's developer panel I have found the problem in your themes style.css in the section beginning with /* 7.2 Gravity forms */ the 8th css rule down looks like this
[css]
.gform_wrapper .gfield_checkbox, .gform_wrapper .gfield_radio {
margin-left: 120px !important;
}
If you copy the following style into your custom.css (notice how I have changed that 120px to 0) the check box should align itself along the left side of your page like the other fields on your form.
[css]
.gform_wrapper .gfield_checkbox, .gform_wrapper .gfield_radio {
margin-left: 0 !important;
}
Posted 12 years ago on Friday January 20, 2012 |
Permalink