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.

Widget Padding

  1. Try to fix the spacing between my label and the description info... http://me.lt/6C0FA - i was able to move the button up but still trying to close the gap between the label and description text...thanks.

    Posted 12 years ago on Saturday July 23, 2011 | Permalink
  2. Try adding this to the end of your theme stylesheet. Your form is inheriting some margins from the theme styles and we need to reset the bottom margin on the heading for this form.

    [css]
    body #gform_wrapper_1 .gform_heading {
    	margin-bottom:0
    }
    #sidebar .widget .gform_wrapper ul.gform_fields  li.gfield {
        padding:0;
    }

    screenshot: http://bit.ly/mTfsaF

    Posted 12 years ago on Saturday July 23, 2011 | Permalink
  3. Thanks works great but for some reason that line is now under my label http://me.lt/6C7RZ

    Posted 12 years ago on Saturday July 23, 2011 | Permalink
  4. yeah, another style inherited from your theme. You can update the rules I gave you above with this

    [css]
    body #gform_wrapper_1 .gform_heading {
    	margin-bottom:0
    }
    #sidebar .widget .gform_wrapper ul.gform_fields  li.gfield {
        padding:0;
        background: none!important
    }
    Posted 12 years ago on Saturday July 23, 2011 | Permalink
  5. Thanks so much for your help.

    Posted 12 years ago on Saturday July 23, 2011 | Permalink
  6. My pleasure.

    Posted 12 years ago on Saturday July 23, 2011 | Permalink

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