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
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
David, checking this out and will let you know what I find soon.
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;
}