I have a small form at http://www.thewdstore.com that I can't figure out how to get the field size adjusted.
Thank you!
I have a small form at http://www.thewdstore.com that I can't figure out how to get the field size adjusted.
Thank you!
Try placing this in your theme's css file:
[css]
div.widget-wrap .gform_wrapper .gform_body .gform_fields .gfield input[type=text],
div.widget-wrap .gform_wrapper .gform_body .gform_fields .gfield input[type=email],
div.widget-wrap .gform_wrapper .gform_body .gform_fields .gfield input[type=tel],
div.widget-wrap .gform_wrapper .gform_body .gform_fields .gfield input[type=url],
div.widget-wrap .gform_wrapper .gform_body .gform_fields .gfield input[type=number],
div.widget-wrap .gform_wrapper .gform_body .gform_fields .gfield input[type=password],
div.widget-wrap .gform_wrapper .gform_body .gform_fields .gfield select,
div.widget-wrap .gform_wrapper .gform_body .gform_fields .gfield textarea {
width:56% !important;
}
That's assuming you want your labels to the left as they are now. If you want the labels to be on top, just increase the width higher than 56%. This will also only affect the input length in your widget area. Here are some CSS documentation as well:
http://www.gravityhelp.com/documentation/page/CSS_Targeting_Samples
That worked. Thank you!
Great, glad to help!