Hi. I’m using the MailChimp sign up widget and the placeholder text in the email and name fields are green. I tried changing it by going to General Styling > Main Content > Main Content secondary font color but it didn’t change so I’m obviously doing it wrong. Any advice on what I have to change?
Hey phillipikoo!
You need to write some custom css please check out this link https://css-tricks.com/snippets/css/style-placeholder-text/
Should you have any issue please get back to us with a link to the page where we can inspect the element in question.
Regards,
Vinay
Hey Vinay, the page is included below. It is the green text in the text box for name and email
Hi,
Try the following CSS:
#avia_mailchimp_widget-2 input::-webkit-input-placeholder {
color: red;
}
#avia_mailchimp_widget-2 input:-moz-placeholder {
color: red;
}
#avia_mailchimp_widget-2 input::-moz-placeholder {
color: red;
}
#avia_mailchimp_widget-2 input:-ms-input-placeholder {
color: red;
}
Cheers!
Rikard