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.

Spacing between field and description

  1. bigmaxsstudio
    Member

    http://regalhaircolor.com/orderforms/hergen

    The spacing between the field and description is too large. I've tried all of the previous suggestions, but nothing has worked.

    Thanks,

    Patti

    Posted 12 years ago on Monday February 20, 2012 | Permalink
  2. Richard Vav
    Administrator

    Your problem is being caused by the following rule in your themes style.css adding a 24px bottom margin to all your inputs.

    [css]
    .entry-content input {
    margin: 0 0 24px 0;
    }

    To correct your problem you can either modify that rule and zero the bottom margin or you can add something like the following to the bottom of your stylesheet which should override the above style and reduce the gap between your input and it's description

    [css]
    .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"] {
    margin-bottom: 0 !important;
    }
    Posted 12 years ago on Monday February 20, 2012 | Permalink
  3. bigmaxsstudio
    Member

    Thanks, but that did not fix the problem.

    Posted 12 years ago on Monday February 20, 2012 | Permalink
  4. I believe it's because you are missing a closing bracket in your CSS here, above the #footer declaration:

    http://grab.by/c2bu

    Posted 12 years ago on Monday February 20, 2012 | Permalink