Home › Forums › Product Support Forums › Ajax Search Pro for WordPress Support › Cannot get the magnifier search icon visible on frontend › Reply To: Cannot get the magnifier search icon visible on frontend
June 11, 2020 at 12:26 pm
#27801
Keymaster
Hi Anne,
You have this custom CSS in your theme style.css file:
div.asp_w.ajaxsearchpro{
position: absolute;
top:0px;
min-width: 200px;
}
That is causing the conflict. Please either remove it, or modify it so that it does not affect the compact search, like so:
div.asp_w.ajaxsearchpro:not(.asp_compact){
position: absolute;
top:0px;
min-width: 200px;
}