Home › Forums › Product Support Forums › Ajax Search Pro for WordPress Support › Change icon when search bar open/active › Reply To: Change icon when search bar open/active
November 27, 2019 at 1:09 pm
#24773
Keymaster
Hi,
Well, this would require an customization, but you can try it via a custom CSS, I believe that is the simplest solution. Something like this:
.asp_m[asp-compact=open] .innericon svg {
display: none !important;
}
.asp_m[asp-compact=open] .innericon {
background: url('https://image.flaticon.com/icons/png/512/60/60994.png') no-repeat center center;
}
It should be very close to a possible solution.