PLEASE NOTE: These forums are no longer utilized and are provided as an archive for informational purposes only. All support issues will be handled via email using our support ticket system. For more detailed information on this change, please see this blog post.

Checkbox list label

  1. Symphony
    Member

    Hello, i would like to move the list labels from the right of the checkboxes to the left. Is this easily doable?

    Posted 13 years ago on Friday April 20, 2012 | Permalink
  2. 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
    }
    Posted 13 years ago on Friday April 20, 2012 | Permalink