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.

Misaligned labels on checkboxes using inspiration theme.

  1. I have read all the topics closely related to this that I could find on here but none of the solutions seemed to work for me. I have a form on the following site that has misaligned checkbox labels. http://advisorpr.com/get-started/contact-us/ I cannot figure out how to adjust the css correctly to make the labels inline with the boxes.

    Any chance someone out there could point me in the right direction?

    Thanks so much!

    Posted 11 years ago on Monday January 28, 2013 | Permalink
  2. David Peralty

    Can I have you try the following please:

    [css]
    .gform_wrapper .gfield_checkbox li label, .gform_wrapper .gfield_radio li label {
    display: inline !important;
    }
    Posted 11 years ago on Monday January 28, 2013 | Permalink
  3. That did work to align them but now there is a large space between the label and checkbox.

    Posted 11 years ago on Monday January 28, 2013 | Permalink
  4. David Peralty

    Add

    margin: 0 !important;

    to the above rule set.

    Posted 11 years ago on Monday January 28, 2013 | Permalink