Why are the fields transparent in firefox only? In all other browsers the fields are white. Is there a quick fix for this?
Why are the fields transparent in firefox only? In all other browsers the fields are white. Is there a quick fix for this?
Got a link to your form?
every form i've made does this same thing. Only in firefox.
Here is your culprit, your stylesheet has a mozilla only background declaration on it (gradient):
Axe that if you don't need/want it. Or you can simply override it via a new, more specific selector.
I'm having a hard time finding that in my stylsheet. What would a quick override be for gravity forms? Thanks for your help.
This should do the trick:
[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"] {
background: white;
}
thanks Rob. did the trick.
Right on, glad to help.