How do I resize the first name and last name for the newsletter registration on this page so they fit better in the widget. I'd like them to also keep the border and outline that is currently missing on the right.
How do I resize the first name and last name for the newsletter registration on this page so they fit better in the widget. I'd like them to also keep the border and outline that is currently missing on the right.
Your theme is adding left/right padding to the inputs which is throwing the width values off. You can override that rule to remove the padding by adding this to the end of your theme stylesheet.
[css]
body .gform_widget .gform_wrapper .gform_body input[type="text"],
body .gform_widget .gform_wrapper .gform_body textarea {
padding: 5px 0!important;
}
screenshot: http://bit.ly/oRDih2
It looks like there is also an height property on the containing div that you need to adjust so the form button doesn't get cropped off.