[Resolved] text impossible to click

Home Forums Support [Resolved] text impossible to click

Home Forums Support text impossible to click

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

    Hello,
    it seems that only from Ipad there is no possibility to tap on the language switcher (top left of the menu)

    Do you know what could be the cause of this issue?

    thanks

    #1589490
    David
    Staff
    Customer Support

    Hi there,

    you have this CSS:

    .shop-menu {
        display: flex;
        margin: auto;
        padding: 30px 50px 0px 50px;
        margin-bottom: -40px;
    }

    The margin -40px is pulling the site header up over your shop menu. So the Site Header now blocks all of the shop menu items from being clicked. Remove the margin-bottom: -40px; property and add this:

    @media(min-width: 769px) {
        .main-title a {
            position: absolute;
            top: -30px;
            left: 50%;
            transform: translateX(-50%);
        }
    }
    #1589526
    Daniele

    Thanks David, the issue is solved, but the header disappear in portrait mode: https://imgur.com/a/IwCK0dv

    Another issue I got from Iphone is that: https://imgur.com/a/ogyZrPM

    always the language switcher, this time the EN goes on a new line…only from Iphone!

    I don’t have an Iphone to test is so is difficult for me to check the issue by myself…

    #1589760
    Tom
    Lead Developer
    Lead Developer

    Hi there,

    Try adding this CSS:

    #mobile-header .main-title a {
        top: 0;
    }
    
    #generate-slideout-menu .slideout-menu li.lang-item {
        display: inline-block;
        width: auto;
    }

    Let us know ๐Ÿ™‚

    #1590212
    Daniele

    Thanks!

    #1591064
    Tom
    Lead Developer
    Lead Developer

    No problem ๐Ÿ™‚

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