In your theme's stylesheet you have:
[css]
input[type="text"], input[type="password"], textarea, {
background: #FAFAFA;
-moz-box-shadow: inset 0 1px 1px rgba(0,0,0,0.1);
-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.1);
box-shadow: inset 0 1px 1px rgba(0,0,0,0.1);
border: 1px solid #DDD;
color: #888;
border-image: initial;
}
To target the email and phone input types, just replace that with this:
[css]
input[type="text"], input[type="password"], input[type="email"], input[type="tel"], textarea, {
background: #FAFAFA;
-moz-box-shadow: inset 0 1px 1px rgba(0,0,0,0.1);
-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.1);
box-shadow: inset 0 1px 1px rgba(0,0,0,0.1);
border: 1px solid #DDD;
color: #888;
border-image: initial;
}
Posted 12 years ago on Wednesday February 8, 2012 |
Permalink