Looks like in your style.css you have:
[css]
body #gform_wrapper_5 .gform_body .gform_fields .gfield .gfield_checkbox {
list-style-type: none;
list-style-image: none;
color: white;
line-height: 30px;
font-size: 0.9em;
}
If you get rid of that line-height your checkbox fields will come closer together. Then you also have this style (I added the margin-left: 0) at the bottom, so you would just need to update that:
[css]
body #gform_wrapper_5 .gform_body .gform_fields {
list-style: none;
list-style: none;
list-style-position: inside;
margin-bottom: 3px;
display: inline;
margin-left: 0;
}
Making these adjustments worked for me in Chrome Dev Tools. Hope this helps out.
Posted 12 years ago on Monday February 6, 2012 |
Permalink