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
August 5, 2020 at 2:49 pm
#28820
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.