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

Reply To: Change icon when search bar open/active

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

#24773
Ernest MarcinkoErnest Marcinko
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.