PLEASE NOTE: These forums are no longer utilized and are provided as an archive for informational purposes only. All support issues will be handled via email using our support ticket system. For more detailed information on this change, please see this blog post.

Increase spacing between fields

  1. Can you tell me what to add to css to increase the margin space between each field that is vertical to one another?

    Posted 13 years ago on Sunday June 5, 2011 | Permalink
  2. 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

    Posted 13 years ago on Sunday June 5, 2011 | Permalink