How do I change the color of the text users enter in the form fields. It's barely readable right now and I'd like it to be the same color as the field titles or something else commonly used that's recognizable.
How do I change the color of the text users enter in the form fields. It's barely readable right now and I'd like it to be the same color as the field titles or something else commonly used that's recognizable.
You would use something like this in your theme's stylesheet:
[css]
.gform_wrapper .top_label input.medium {
color: #333;
}
You could get more vague or specific than that when it comes to inputs, this above is targeting medium-sized input fields.
I tried that and still no dice. can you look to see if I entered it incorrectly.
ok i got it to work, do I use the same code but enter large for the paragraph text fields?
Is there a way to set this as the text color for every entry field or do you have to go through each one individually.
Large inputs use textarea HTML elements, so the css for that would be:
[css]
.gform_wrapper textarea.medium {
color: #333;
}
perfect, thanks Rob.
No problem, glad to help!