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.
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.
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
Thanks works great but for some reason that line is now under my label http://me.lt/6C7RZ
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
}
Thanks so much for your help.
My pleasure.