Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #919336

    Hello, I’ve noticed an issue on our website regarding the search function when using the site in mobile. Tapping the search icon is unresponsive. However when the menu button is tapped, the search button becomes usable again. Is there a quick CSS fix for this? I’ve attached the site URL to the private content for you to review.

    #919484

    Hey ducani,

    It looks like what you have added to phone info is covering it on mobile, please try to adjust your CSS:

    @media only screen and (max-width: 767px) {
    .header_right {
        position: relative !important;
        float: left !important;
        width: 100% !important;
        text-align: center !important;
        top: 75px;
    }
    }

    Best regards,
    Rikard

    #920046

    Hmm that didn’t work. The tappable area of the search icon still doesn’t register when tapped on mobile.

    #920152

    Hi,

    The CSS I posted is the one being applied when it’s not working, did you try to remove or change it?

    Best regards,
    Rikard

    #920248

    Yes I removed it

    #920640

    Hi,

    I don’t think you removed everything, you have this for instance:

    @media only screen and (max-width: 1077px) {
    .header_right {
        top: 65px;
    }
    }

    Try changing that to 85 or higher and you will see that the search box will work again after that.

    Best regards,
    Rikard

Viewing 6 posts - 1 through 6 (of 6 total)
  • You must be logged in to reply to this topic.