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

Reply To: Cannot get the magnifier search icon visible on frontend

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

#27801
Ernest MarcinkoErnest Marcinko
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;
}