[Resolved] hamburger menu to far right on mobile/tablet

Home Forums Support [Resolved] hamburger menu to far right on mobile/tablet

Home Forums Support hamburger menu to far right on mobile/tablet

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #1385544
    Torsten

    Hi Tom,
    I tried to set the hamburger menu to the right for mobile and tablet, can’t get it to work…
    Could you please take a look?
    Thanks ahead,
    Torsten

    #1385581
    David
    Staff
    Customer Support

    Hi there,

    you have this CSS that is adding padding to the navigation:

    .inside-navigation {
        position: relative;
        padding-left: 8%;
        padding-right: 100px;
    }

    Change it to:

    .inside-navigation {
        position: relative;
        padding-left: 8%;
    }
    
    @media(min-width: 769px) {
        .inside-navigation {
            padding-right: 100px;
        }
    }
    #1386009
    Torsten

    perfect,
    thanks David!
    best,
    Torsten

    #1386614
    David
    Staff
    Customer Support

    You’re welcome

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