style.css (line 1688) has this..
[css]
div.gform_wrapper input,
div.gform_wrapper select,
div.gform_wrapper textarea {
color: #000000;
font-family: 'Helvetica Neue',Helvetica,Arial,Tahoma,sans-serif;
font-size: 12px !important;
padding: 4px 5px !important;
}
It's the extra padding that is defined there added to the percentage-based width definition that's causing the issue.
You can try adding this to the end of your theme's stylesheet or wherever your theme provider recommends adding your custom CSS rules.
[css]
body .gform_wrapper .top_label input.large,
body .gform_wrapper .top_label select.large,
body .gform_wrapper .top_label textarea.textarea {
width: 98.2% !important
}
test screenshot: http://bit.ly/HRz1Om
Posted 13 years ago on Friday April 13, 2012 |
Permalink