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

Search Field affects ADA image in menu

Home Forums Product Support Forums Ajax Search Pro for WordPress Support Search Field affects ADA image in menu

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #54918
    rrossittorrossitto
    Participant

    On Safari browser, when I click the search field to open it makes the ADA icon next to it shrink. A short video showing the problem is attached.

    The staging site details are:
    User: staging_urxur2
    Password: CmFySNPNgS8t

    #54919
    rrossittorrossitto
    Participant

    Attached is the example video compressed so it would upload.

    #54922
    Ernest MarcinkoErnest Marcinko
    Keymaster

    Hi,

    It’s likely due to the change in the block layout as it pushed itself to the left, and my guess is that either the page width or an overflow changes a tiny bit. Not directly caused by the plugin, but due to the inner block flow change.

    It might be better to use an relative to absolute positioned version so the document flow is not interrupted. Try this custom CSS, this will basically remove the search from the flow, but retains the same position:

    .asp_w_container.asp_w_container_2.asp_compact {
        position: relative;
    
        .asp_m {
            position: absolute;
            top: -32px;
            right: 0;
        }
    }
Viewing 3 posts - 1 through 3 (of 3 total)
  • You must be logged in to reply to this topic.