Site logo

Archived topic

How to switch on the 2th menu ?

7 replies · Started by Robert on February 4, 2023

Viewing posts 1–8 of 8

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.

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;
    }
}

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

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;
}

THX!

:)

R.

You're welcome

This archived topic is closed to new replies.