Home › Forums › Product Support Forums › Ajax Search Pro for WordPress Support › Is it possible to make the placeholder text disappear once the search field is c › Reply To: Is it possible to make the placeholder text disappear once the search field is c
June 9, 2017 at 5:35 am
#13476
Keymaster
Hi!
It is possible, but there is no option for that. You will need this custom CSS code:
[html]input.orig:focus::-webkit-input-placeholder { color:transparent !important; }
input.orig:focus:-moz-placeholder { color:transparent !important; }
input.orig:focus::-moz-placeholder { color:transparent !important; }
input.orig:focus:-ms-input-placeholder { color:transparent !important; }[/html]