Site logo

[Resolved] How to switch on the 2th menu ?

Home Forums Support [Resolved] How to switch on the 2th menu ?

Home Forums Support How to switch on the 2th menu ?

Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #2521028
    Robert

    Hi

    I work on a new projekt and I wanna ask how its passible, on the mobile version,
    to switch ON the 2th MENU with all products (on the desktop it’s this MENU: https://snipboard.io/gdzniN.jpg)

    under this MAIN MENU:

    https://snipboard.io/NBlv6H.jpg

    Kr
    Robert

    #2521043
    Robert

    I have someting – on the SHOP PAGE it’s on the end off all products:

    https://snipboard.io/LXMFu6.jpg

    …but:
    – it should be on the the begin of all product

    R.

    #2521324
    David
    Staff
    Customer Support

    Hi there,

    try adding this CSS to move the leftsidebar to the top on Mobile:

    @media (max-width: 768px) {
        .left-sidebar .site-content {
            flex-direction: column-reverse;
        }
        .is-left-sidebar nav button {
            padding: 10px;
        }
    }
    #2521366
    Robert

    Hi

    thx

    it works…
    🙂

    just one question – is there any solution to add after the 3 MENU lines the word “MENU”, in white ?

    Thx!
    Robert

    #2521367
    Robert
    #2521376
    David
    Staff
    Customer Support

    Is there an option in the Navigation Block to add a label?

    If no, the try adding this CSS:

    .wp-block-navigation > button:after {
        content: 'Menu';
        text-transform: uppercase;
        font-weight: 700;
    }
    #2521382
    Robert

    THX!

    🙂

    R.

    #2521901
    David
    Staff
    Customer Support

    You’re welcome

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