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

Reply To: Need a transparent background behind magnifier…

Home Forums Product Support Forums Ajax Search Pro for WordPress Support Need a transparent background behind magnifier… Reply To: Need a transparent background behind magnifier…

#29085
Ernest MarcinkoErnest Marcinko
Keymaster

Hi Brian,

Thank you for your kind words!

Well, your best bet is probably using some custom CSS, like so:


.asp_m.asp_compact,
.asp_m.asp_compact * {
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
}

div.asp_m.asp_compact[asp-compact=open] {
    background: white !important;
}

This forces a transparent backgroun on every element on the box when closed, and then a white when open.