This website uses cookies to personalize your experience. By using this website you agree to our cookie policy.

Reply To: CSS to change placeholder text color

Home Forums Product Support Forums Ajax Search Pro for WordPress Support CSS to change placeholder text color Reply To: CSS to change placeholder text color

#8261
Ernest MarcinkoErnest Marcinko
Keymaster

Hi!

Thanks for your kind words!

To have a different placeholder color, you will need to add the follosing custom CSS code:

[html]input.orig::-webkit-input-placeholder {
color: #FFFFFF !important;
}

input.orig:-moz-placeholder { /* Firefox 18- */
color: #FFFFFF !important;
}

input.orig::-moz-placeholder { /* Firefox 19+ */
color: #FFFFFF !important;
}

input.orig:-ms-input-placeholder {
color: #FFFFFF !important;
}[/html]

Just change the #FFFFFF value to the desired color value.