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.

How to edit field height/spacing

  1. Christinarule
    Member

    http://maraglazer.com/contact/ I'd like to fix the spacing between each field on this form as well as get ride of the spacing under the submit button... how would I go about doing this?

    Thanks!

    Posted 11 years ago on Thursday December 6, 2012 | Permalink
  2. Richard Vav
    Administrator

    Your themes base.css stylesheet is adding a 20px bottom margin to the inputs, selects and textarea fields to correct it you will need to add a new style setting that bottom margin to 0

    .gform_wrapper input[type="text"], .gform_wrapper input[type="url"], .gform_wrapper input[type="email"], .gform_wrapper input[type="tel"], .gform_wrapper input[type="number"], .gform_wrapper input[type="password"], .gform_wrapper textarea, .gform_wrapper select {
    margin-bottom: 0;
    }
    Posted 11 years ago on Thursday December 6, 2012 | Permalink
  3. Christinarule
    Member

    Thank you so much! Any idea about the button? It seems to be a huge space below it.

    Posted 11 years ago on Thursday December 6, 2012 | Permalink
  4. Richard Vav
    Administrator

    I haven't found the culprit just yet, it could be that the margins being applied to a few elements are compounding to give the appearance of one large gap

    Posted 11 years ago on Thursday December 6, 2012 | Permalink