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 above submit

  1. Added a sign up form as a widget. I have lots of space above the submit button that I would like to decrease but am unsure how. Here is the temp site: http://184.172.176.52/~woodlake/

    Posted 11 years ago on Tuesday November 27, 2012 | Permalink
  2. Line 440 of your theme's screen.css contains this styling:

    [css]
    /* Line 440 */
    #sidebar ul
    {
      padding-top: 0px;
      padding-right: 0px;
      padding-bottom: 45px;
      padding-left: 0px;
    }

    Add this to one of your theme's stylesheets (wherever your theme provider suggests adding custom CSS) to override that bottom padding:

    [css]
    body #sidebar ul {
        padding-bottom: 0px;
    }
    body #sidebar .gform_wrapper .gform_footer {
        margin-top: 0px;
    }
    Posted 11 years ago on Wednesday November 28, 2012 | Permalink