Hello, i would like to move the list labels from the right of the checkboxes to the left. Is this easily doable?
Hello, i would like to move the list labels from the right of the checkboxes to the left. Is this easily doable?
Well, "easy" is relative. If you know a little CSS then yes. You just need to target the checkbox fields properly, then re-position the label and inputs.
http://www.gravityhelp.com/documentation/page/CSS_Targeting_Samples
Look for the section titled "Checkbox List Items"
Since you didn't post a URL to your actual form page, I can't tell you anything for sure but this is the basic idea.. repositioning the label and input elements (in this example, it would only apply to form ID#1)
[css]
body #gform_wrapper_1 .gform_body .gform_fields .gfield .gfield_checkbox li input[type=checkbox] {
float: right
}
body #gform_wrapper_1 .gform_body .gform_fields .gfield .gfield_checkbox li label {
float: left
}