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

Reply To: Search Input Font Colour not changing

Home Forums Product Support Forums Ajax Search Pro for WordPress Support Search Input Font Colour not changing Reply To: Search Input Font Colour not changing

#28820
Ernest MarcinkoErnest Marcinko
Keymaster

The color should be the same as the input color, with a lower opacity.

In this case I am seeing a global placeholder CSS rule, that overrides the color of that. Use this custom CSS to change the color of the placeholder please:

input.orig::placeholder {
    color: rgb(55,55,55) !important;
}

That should do the trick.