My checkbox text will not align correctly. I'm sure it's my theme's css but I don't know where to look... any pointers? Also, the CSS Ready Classes won't work to make two columns.
Here is the site: http://bainbridgelocallygrown.com/form-test/
My checkbox text will not align correctly. I'm sure it's my theme's css but I don't know where to look... any pointers? Also, the CSS Ready Classes won't work to make two columns.
Here is the site: http://bainbridgelocallygrown.com/form-test/
For the ready classes - it looks like you have "gf_list_2co" instead of "gf_list_2col".
Try dropping this into your theme's stylesheet for the checkbox styling:
[css]
.gform_wrapper .gfield_checkbox li label, .gform_wrapper .gfield_radio li label {
float: none !important;
width: auto !important;
margin: 2px 0 10px 5px !important;
}
.gform_wrapper.gf_browser_chrome .gfield_checkbox li input[type="checkbox"], .gform_wrapper.gf_browser_chrome .gfield_radio li input[type="radio"], .gform_wrapper.gf_browser_chrome .gfield_checkbox li input {
margin-top: 4px !important;
}
Thanks very much Rob....that got it real close. I'm guessing I can play with the values to tweak a bit more however I still can't get it to line up correctly...but very close.
Indeed you can - those were just some close/quick estimates on the fly.
I'll play with it.
Thanks again...a little negative margin value and it's working.
Thank you for the update.