When clicking on a field whatever is entered turns black, but when you click off a field it turns light grey. How can I keep it black at all times?
When clicking on a field whatever is entered turns black, but when you click off a field it turns light grey. How can I keep it black at all times?
That is a theme issue, you would have to link to your form so we can see it and see what CSS would need changing/overriding to fix this for you.
Hello, in your themes style.css on lines 3319 to 3328 you have the following CSS setting the size of the text in the field inputs, edit it and add
color:black;
before the closing } bracket
body .gform_wrapper .gform_body .gform_fields .gfield input[type=text], body .gform_wrapper .gform_body .gform_fields .gfield input[type=email], body .gform_wrapper .gform_body .gform_fields .gfield input[type=tel], body .gform_wrapper .gform_body .gform_fields .gfield input[type=url], body .gform_wrapper .gform_body .gform_fields .gfield input[type=number], body .gform_wrapper .gform_body .gform_fields .gfield input[type=password], body .gform_wrapper .gform_body .gform_fields .gfield select, body .gform_wrapper .gform_body .gform_fields .gfield textarea {
font-size: 14px;
}
That should stop your own themes css from changing the font color to grey.
Regards,
Richard
--
Just another member of the community helping out where I can
Awesome!! Thank you very much.
You're welcome