Home › Forums › Product Support Forums › Ajax Search Pro for WordPress Support › Text Input and result display issue › Reply To: Text Input and result display issue
May 18, 2020 at 12:23 pm
#27414
Keymaster
Hi,
Fortunately these are only two minor styling conflicts.
The text input form is hidden by a theme custom CSS rule, and the resutls z-index is lower then the background layer. These custom CSS should resolve both:
.asp_m form {
display: block !important;
}
div.asp_r {
z-index: 9999999 !important;
}
I hope this helps!