Archived topic
Off canvas panel menu label position left
5 replies · Started by Damiaan van Vliet on January 20, 2022
Good morning great team,
I have set up the off canvas panel which works great. But the menu label it's positioned at the right.
I cannot figure out how to have it aligned to the left.
Thank you.
[url=https://ibb.co/ftfQhKr][img]https://i.ibb.co/ftfQhKr/2022-01-20-08-57-49-Window.jpg[/img][/url]
Hi there,
can you share a link to the site so i can take a look ?
Of course David, thank you!
It's a development multi-site and you have now super admin rights.
The sub-site I am talking about is "locatie01".
Try this CSS:
.slideout-toggle a {
display: flex;
flex-direction: row-reverse;
align-items: center;
}
.slideout-toggle .off-canvas-toggle-label {
padding-left: 0;
padding-right: 7px;
}
Hi David, the code did not work. But you've helped me thinking a different way.
I've tried this and that's working:
#primary-menu .sf-menu > li.slideout-toggle {
float: left;
}
Glad to hear you found a solution!