Can you tell me what to add to css to increase the margin space between each field that is vertical to one another?
Can you tell me what to add to css to increase the margin space between each field that is vertical to one another?
The form is structured using a standard unordered list and each field is in its own list item. You would just add top or bottom padding to the list items to increase the vertical spacing between the fields. Something like this.
[css]
body .gform_wrapper .gform_body .gform_fields .gfield {
padding:5px 0 0 0;
}
More samples are in the documentation here.
http://www.gravityhelp.com/documentation/page/CSS_Targeting_Samples