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
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
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
Thanks so much for the quick reply!
Your solution fixed everything!
Thanks so much!
Victor