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

Text Input and result display issue

Home Forums Product Support Forums Ajax Search Pro for WordPress Support Text Input and result display issue

Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #27397
    SLSOL46SLSOL46
    Participant

    Hi there!

    I have an issue with text input (and results) on the search.

    I am running it in menu (superfly) While the search button and display works, i can not text input and the results appear to be behind the overlay (see vid) i think this maybe a z-index issue (i did go through your knowledge base) and was wondering if you could take a look?

    i managed to get the native wordpress search to work here but not Ajax 🙁

    VIDEO: http://files.jamestobias.co/v/l7P848w8eGqpWslaXwci

    Thx!

    #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!

    #27419
    SLSOL46SLSOL46
    Participant

    It fixed the results but not the text input..?

    VID: http://files.jamestobias.co/A0hPkpK

    BTW this plugin is awesome, i ran it on an internal page and works so well.

    🙂

    J

    #27421
    Ernest MarcinkoErnest Marcinko
    Keymaster

    Thank you for your kind words 🙂

    Looks like the other CSS rule has a higher specificity, try this variation instead of the first one:

    #sfm-sidebar .asp_m form {
        display: block !important;
    }

    ..that should do it.

    #27422
    SLSOL46SLSOL46
    Participant

    YAY! That did it! Thx so much! have a great week, leaving you a 5 star review now, by far the best WP search plugin i have used!

    🙂

    J

    #27423
    Ernest MarcinkoErnest Marcinko
    Keymaster

    You cannot access this content.

    #27424
    SLSOL46SLSOL46
    Participant

    yep of course! thank you again, review left on CC for you!

    🙂

    J

Viewing 7 posts - 1 through 7 (of 7 total)
  • The topic ‘Text Input and result display issue’ is closed to new replies.