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.

Another Spacing Issue

  1. I've looked around the forum a bit and tried using various suggestions, but I really just can't seem to close the gap between the box and its description on this form: http://www.ptsprintshop.com - Any help is greatly appreciated.

    Posted 12 years ago on Saturday January 21, 2012 | Permalink
  2. Richard Vav
    Administrator

    Your problem is being caused by the following bit of css in the file utility_common.css which is adding a 24 pixel margin to the bottom of all your input fields.

    .k_main input {
    	margin: 0 0 24px 0;
    }

    If you can change it so it matches the following that should solve your problem

    .k_main input {
    	margin: 0;
    }
    Posted 12 years ago on Saturday January 21, 2012 | Permalink
  3. Richard Vav
    Administrator

    If you can't change that style because it will affect other parts of your site then check out this post by Rob on how to target the gravity forms inputs specifically.
    http://www.gravityhelp.com/forums/topic/layout-of-labels-too-far-below-fields#post-43420

    Posted 12 years ago on Saturday January 21, 2012 | Permalink
  4. If you don't want to change your theme's class styling (.k_main input) you can always just target the GF complex input in your theme's stylesheet:

    [css]
    .gform_wrapper .ginput_complex input {
    margin-bottom: 0;
    }
    Posted 12 years ago on Saturday January 21, 2012 | Permalink
  5. Thanks Guys, that did it. I can't say thank you enough, and if you had answered any quicker I would have thought you were reading my mind. Thanks again.

    Posted 12 years ago on Saturday January 21, 2012 | Permalink
  6. Awesome, glad to help!

    Posted 12 years ago on Saturday January 21, 2012 | Permalink

This topic has been resolved and has been closed to new replies.