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.

my radio buttons and check boxes » Misalignment

  1. I really need your help here.
    I've already been reading all the posts about this issue and tryed to work it out ... but with no success.

    http://www.caramelo.com.pt/wp-site/cancao-inquerito/
    user: gravity
    pass: test123

    Hope to ear from you soon.

    Posted 13 years ago on Sunday November 7, 2010 | Permalink
  2. Your "min-height:30px" rule in you theme's layout.css file (line 474) is being inherited by the checkboxes & radio fields (which are inputs too) and that's causing the odd cascading effect. If you disable that rule, you'll see that everything formats properly.

    screenshot

    Posted 13 years ago on Sunday November 7, 2010 | Permalink
  3. Ok. Thanks.
    How do you sugest to increase the size of the input boxes in their height value?

    Posted 13 years ago on Sunday November 7, 2010 | Permalink
  4. Use specific attribute selectors to define exactly which inputs you want to inherit the rule. Most theme developers just apply blanket rules to all inputs which usually hose up the checkboxes and radio buttons.

    input[type=text],
    input[type=email],
    input[type=tel],
    input[type=url],
    select {min-height:30px}

    screenshot

    Posted 13 years ago on Sunday November 7, 2010 | Permalink