Hi
How do I change the Contact form input field text color? Currently, it is white on white background. So I can’t read the text when typing. How do I change it to black?
Thanks
Hi
How do I change the Contact form input field text color? Currently, it is white on white background. So I can’t read the text when typing. How do I change it to black?
Thanks
Hello @mwahidullah,
Thanks for writing to us.
Regretfully there is no option for that but you can achieve it through the custom CSS code. You need to add this custom CSS code under Theme Option —>CSS
input.wpcf7-form-control.wpcf7-text.wpcf7-email,
input.wpcf7-form-control.wpcf7-text,
textarea.wpcf7-form-control.wpcf7-textarea{color: #000000;}
In case you are talking about input field labels you can use this code.
.wpcf7-form label {
color: #000000;
}
The purpose of providing custom CSS is to show you how to add CSS code to your site. Writing custom CSS is outside the scope of our theme support. If you need more customization, you need to learn CSS and learn how to use the browser’s element inspector or you subscribe to One where customization questions are answered.
Hope it helps.
Thanks
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.