How do you change the spacing between the input boxes to squish the form closer together?
Thanks
How do you change the spacing between the input boxes to squish the form closer together?
Thanks
Looks like the labels is what is in that blank area, so you could do this:
[css]
#gform_wrapper_1 .gfield_label {
display: block;
}
I targeted just this form's labels, not sure how global or specific you want your selector for this purpose.