Looks like in your theme you have this:
[css]
input[type="text"], input[type="password"], input[type="email"], textarea, select {
background: none repeat scroll 0 0 #222;
border: 1px solid #444;
border-radius: 2px 2px 2px 2px;
color: #777;
}
If you want to retain that style and not mess with it, then you will need to target gravity form's inputs only with something like this and place it into your theme's css:
[css]
.gform_wrapper input[type="text"], .gform_wrapper input[type="url"], .gform_wrapper input[type="email"], .gform_wrapper input[type="tel"], .gform_wrapper input[type="number"], .gform_wrapper input[type="password"], .gform_wrapper select {
color: white !important;
border-color: #666 !important;
}
Posted 13 years ago on Tuesday February 28, 2012 |
Permalink