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.

Columns uneven

  1. victor7711
    Member

    Hi,

    I'm using the ready column css classes to make a 2 column form. However the columns do not align with each other.

    http://www.ibuyimports.com/get-appraisal

    What can I do to have the text align evenly?

    Thanks,

    Victor

    Posted 13 years ago on Monday January 31, 2011 | Permalink
  2. Your theme is adding extra margins to the containing list items and this is causing the layout problem. See line 845 of your style.css file. When that is disabled, the formatting is correct.

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

    You can add this to the end of your theme stylesheet and it should correct the issue for you.

    body #content .post .gform_wrapper ul li,
    body #content .page .gform_wrapper ul li,
    body #home .gform_wrapper ul li {margin-left: 0!important;}

    Also, I noticed a margin problem on your radio/multiple-choice fields. Add this and it should fix that as well.

    body .gform_wrapper .gform_body .gform_fields .gfield .gfield_radio li input[type=radio],
    body .gform_wrapper .gform_body .gform_fields .gfield .gfield_checkbox li input[type=checkbox]{margin-top: 2px!important;}

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

    Posted 13 years ago on Monday January 31, 2011 | Permalink
  3. victor7711
    Member

    Thanks so much for the quick reply!

    Your solution fixed everything!

    Thanks so much!

    Victor

    Posted 13 years ago on Monday January 31, 2011 | Permalink