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.

Check box alignment (theme issue?)

  1. Tim
    Member

    http://www.mikesroofs.com/free-estimates/

    I'm a Gravity form beginner here. I just upgraded to latest version (not the 1.5) and implemented some basic conditional logic and my check boxes are out of alignment and shows clearly when you check the lower box. Any suggestions on how to fix it?

    Thank you.

    Posted 13 years ago on Tuesday February 8, 2011 | Permalink
  2. Your theme's style.css file (line 814) applies a 2em height property to inputs. The checkboxes are inheriting from this and it's causing the problem. If you disable the rule, you'll see that the formatting is correct.

    screenshot: http://grab.by/8Qyh

    If you need to keep the rule for other fields, specify which input types need to inherit from it. Simply using "Input" is too general.

    .gform_wrapper input[type=text],
    .gform_wrapper option {height: 2em;}
    Posted 13 years ago on Tuesday February 8, 2011 | Permalink