You're going about this the wrong way. You're applying blanket rules to the input tag and there are different types of inputs such as radio/checkbox inputs that will inherit the same properties.
It's better to target the inputs specifically by their types to do what you want. Replace your input rule with this.
[css]
/* target specific input types for the new height property */
body .gform_wrapper input[type=text],
body .gform_wrapper input[type=tel],
body .gform_wrapper input[type=url],
body .gform_wrapper input[type=password],
body .gform_wrapper input[type=number],
body .gform_wrapper input[type=file] {
height:3em
}
/* add spacing between lists by padding the containing list item */
body .gform_wrapper ul.gfield_radio li {
padding-bottom: 10px!important;
}
screenshot: http://d.pr/EeWV
Posted 13 years ago on Monday April 11, 2011 |
Permalink