Hi Team
I use contact form 7 built a form,how can i change the color with font in form?
I want to change the font color of the input to blue.
Hey zemanchiu,
Please try the following in Quick CSS under Enfold->General Styling:
#searchform_element input {
color: blue;
}
Best regards,
Rikard
Hi Rikard
Thank you for your reply, but I didn’t mean to change search to blue,
I want to change the text entered in the form into blue, thank you.
Hi,
Please try this CSS instead:
#searchform_element input::-webkit-input-placeholder {
color: pink;
}
#searchform_element input::-moz-placeholder {
color: pink;
}
#searchform_element input:-ms-input-placeholder {
color: pink;
}
#searchform_element input:-moz-placeholder {
color: pink;
}
Best regards,
Rikard
Dear Rikard
Tks for you help!
it is working.
and how can i change the font color of the “PART NUMBER” “MANUFACTURER” and “QUANTITY”?
Hi,
Please try this code in the General Styling ▸ Quick CSS field or in the WordPress ▸ Customize ▸ Additional CSS field:
#RFQ-responsive-form input::-webkit-input-placeholder,
#RFQ-responsive-form textarea::-webkit-input-placeholder{
color: blue;
}
#RFQ-responsive-form input::-moz-placeholder,
#RFQ-responsive-form textarea::-moz-placeholder{
color: blue;
}
#RFQ-responsive-form input:-ms-input-placeholder,
#RFQ-responsive-form textarea:-ms-input-placeholder{
color: blue;
}
#RFQ-responsive-form input:-moz-placeholder,
#RFQ-responsive-form textarea:-moz-placeholder{
color: blue;
}
After applying the css, please clear your browser cache and check.
Best regards,
Mike