Your theme has this for the styling:
[css]
#content form input[type="text"], #content form input[type="password"], #content form textarea {
background: white url(images/content-form-bg.png) repeat;
border: 1px solid #D9D7D2;
padding: 5px 10px;
float: left;
clear: both;
resize: none;
}
See how it's only targeting certain input types? If you want it to target other input types you can just update it to do so, for example replacing that with this should do the trick:
[css]
#content form input[type="text"], #content form input[type="password"], #content form textarea, #content form input[type="tel"], #content form input[type="email"], #content form input[type="url"] {
background: white url(images/content-form-bg.png) repeat;
border: 1px solid #D9D7D2;
padding: 5px 10px;
float: left;
clear: both;
resize: none;
}
Posted 13 years ago on Tuesday April 10, 2012 |
Permalink