Hi there,
I am looking for a solution to change the font color of the contact form. I was read the posts about that but I didn`t found the right solution
For example I added this code but didn`t work
.avia_ajax_form label{
color: #ffffff !important;
}
Here is the link:
Thank you!
Best regards,
Horea
Hey Horea,
Try this code in the General Styling > Quick CSS field:
::-webkit-input-placeholder {
color: #fff !important;
}
:-moz-placeholder {
color: #fff !important;
}
::-moz-placeholder {
color: #fff !important;
}
:-ms-input-placeholder {
color: #fff !important;
}
Best regards,
Mike
Hi Mike,
Thank you for your quick answer, now work.
Thank you!