Archived topic
hamburger menu to far right on mobile/tablet
3 replies · Started by Torsten on August 3, 2020
Viewing posts 1–4 of 4
Hi Tom,
I tried to set the hamburger menu to the right for mobile and tablet, can’t get it to work…
Could you please take a look?
Thanks ahead,
Torsten
Hi there,
you have this CSS that is adding padding to the navigation:
.inside-navigation {
position: relative;
padding-left: 8%;
padding-right: 100px;
}
Change it to:
.inside-navigation {
position: relative;
padding-left: 8%;
}
@media(min-width: 769px) {
.inside-navigation {
padding-right: 100px;
}
}
perfect,
thanks David!
best,
Torsten
You're welcome
This archived topic is closed to new replies.