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

Reply To: Text Input and result display issue

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

#27414
Ernest MarcinkoErnest Marcinko
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!