Try dropping this into your theme's CSS:
[css]
.gform_wrapper .ginput_complex .ginput_full input {
width: 92% !important;
}
.gform_wrapper .ginput_complex .ginput_right input, .gform_wrapper .ginput_complex .ginput_right select, .gform_wrapper .field_name_first input, .gform_wrapper .ginput_complex .ginput_left input {
width: 84% !important;
}
Also, I deactivated/removed the min-width/max-width on this selector as well:
[css]
input[type="text"], input[type="password"], input[type="email"], textarea, select {
border: 1px solid #CCC;
padding: 0px 0px;
outline: none;
-moz-border-radius: 2px;
-webkit-border-radius: 2px;
border-radius: 2px;
font: 13px "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
color: #777;
margin: 0;
min-width: 190px;
max-width: 100%;
display: block;
margin-bottom: 0px;
background: white;
}
Posted 12 years ago on Wednesday April 18, 2012 |
Permalink