Change Input-Font-Color in all Fields of Contact Form 7

Hi Apex-Team,

I just realized that the color of the text in the input-fields of contact form 7 has somehow changed to grey instead of white (at least I remember it being white…). The background of the fields is also grey - just a little darker and it’s hard to read the text that’s been written.
So I want to change the text color in all the fields of the contact form to white. I tried suggestions from similar topics, but that did not change the colors in all the fields…
Is there a way to do that?

This is the site:

Thanks for help
Regards
Ralf

Hi Ralf,

Thank you for writing in, please add this to Theme Options > CSS

.wpcf7 select,
.wpcf7 textarea,
.wpcf7 input[type="text"],
.wpcf7 input[type="password"],
.wpcf7 input[type="datetime"],
.wpcf7 input[type="datetime-local"],
.wpcf7 input[type="date"],
.wpcf7 input[type="month"],
.wpcf7 input[type="time"],
.wpcf7 input[type="week"],
.wpcf7 input[type="number"],
.wpcf7 input[type="email"], 
.wpcf7 input[type="url"],
.wpcf7 input[type="search"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="color"],
.wpcf7 .uneditable-input {
	color: #fff;
}

You can find the proper CSS code selector using the Chrome browser Developer Toolbar
For the CSS code itself, I suggest that you get started with this tutorial

Hope it helps,
Cheers!

1 Like

@friech
Thanks a lot - that did the job :thumbsup::grinning:

You’re welcome, Ralf.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.