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.

Mis-aligned checkboxes

  1. EmailFusion
    Member

    I'm having a CSS problem which I just can't track down.

    my checkboxes are not aligned correctly I wonder if you could help?

    http://groundsourceheatpumps.co.uk/request-an-estimate/

    many thanks
    regards

    David

    Posted 13 years ago on Thursday January 27, 2011 | Permalink
  2. David, checking this out and will let you know what I find soon.

    Posted 13 years ago on Thursday January 27, 2011 | Permalink
  3. I'm not sure exactly what's influencing the layout but you can try adding this to the end of your custom CSS. It should get you a lot closer.

    body #container #content_box .post_box .format_text .gform_wrapper .gfield_checkbox li input[type="checkbox"],
    body #container #content_box .post_box .format_text .gform_wrapper .gfield_checkbox li input {
        margin-top: 0.25em!important;
    }

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

    If you want to tweak it for each individual item, you would grab the checkbox list item class and do it like this..

    body #container #content_box .post_box .format_text .gform_wrapper .gfield_checkbox li.gchoice_22_1 input[type="checkbox"],
    body #container #content_box .post_box .format_text .gform_wrapper .gfield_checkbox li.gchoice_22_1 input {
        margin-top: 0.25em!important;
    }
    Posted 13 years ago on Thursday January 27, 2011 | Permalink