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…
August 25, 2020 at 9:26 am
#29085
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.