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.

Space between fields

  1. How do I change the amount of space between two fields? For example, in one of my forms, I have the "Name" field first, then "Email" field underneath it, then the Submit button. I'd like to have less space in between each of these elements.

    This particular form is only being used in a widget if that is helpful.

    Thanks in advance for your help with this! :)

    Posted 11 years ago on Friday June 15, 2012 | Permalink
  2. Do you have a link to your form?

    Posted 11 years ago on Friday June 15, 2012 | Permalink
  3. Sure, here you go, we happen to be building the site in a live environment. I turned off the maintenance page for the time being... http://eyeoftheneedlewinery.com/

    Thanks. It's on the left at the bottom. :)

    Posted 11 years ago on Friday June 15, 2012 | Permalink
  4. Check out this Screenshot I pointed out what you could do. Looks like you are telling all form li elements to have a bottom margin of 15px. I changed that to 0 and it tightened up.

    This will tighten up the submit button:

    [css]
    .gform_wrapper .gform_footer.top_label {
    margin: 0;
    padding: 0;
    }
    Posted 11 years ago on Friday June 15, 2012 | Permalink