Awesome, so this border: 0; is the cause:
[css]
input[type="text"] {
border: 0;
font: 1em Calibri, AppleGothic, "MgOpen Modata", sans-serif;
line-height: 1em;
padding: 4px;
background: none;
outline: none;
}
So let's try dropping this in to your theme's stylesheet:
[css]
.gform_wrapper input[type="text"], .gform_wrapper input[type="url"], .gform_wrapper input[type="email"], .gform_wrapper input[type="phone"], .gform_wrapper input[type="number"], .gform_wrapper input[type="password"], .gform_wrapper textarea {
border: 2px inset;
}
Posted 13 years ago on Friday March 16, 2012 |
Permalink