[Resolved] How can I put more into mu main menu ?

Home Forums Support [Resolved] How can I put more into mu main menu ?

Home Forums Support How can I put more into mu main menu ?

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #2385356
    Robert

    Hi

    How can I put more into mu main menu ?

    On this moment even my MENU has 5 points (the last one is KONTAKT, but I can’t see it)
    – so I can se only 4…

    https://snipboard.io/aQeSlW.jpg

    Kr
    Robert

    #2385695
    David
    Staff
    Customer Support

    Hi there,

    you have this CSS on your site:

    .main-navigation:not(.toggled) .main-nav > ul {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
    }

    Which is causing the menu to overflow on smaller screens.
    Delete that CSS.

    Then to center the navigation use this:

    
    @media(min-width: 820px) {
        .main-navigation:not(.toggled) .inside-navigation {
            display: flex;
        }
    
        .main-navigation:not(.toggled) .inside-navigation .main-nav {
            margin: auto;
            padding-left: 56px;
        }
    }
    #2385787
    Robert

    thx 🙂

    #2387272
    David
    Staff
    Customer Support
Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.