Archived topic
How to switch on the 2th menu ?
7 replies · Started by Robert on February 4, 2023
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
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