Archived topic
Navigation bar alignment
3 replies · Started by Sandeep on March 22, 2021
Viewing posts 1–4 of 4
I am trying to customize my navigation bar as below:
LOGO on left , Primary menu on center, off canvas menu on right of screen.
Currently, Primary menu and hamburger menu aligned to center. I want to move the hamburger menu to right.
Is there any simple way to do this using the customizer?
Please find the attached URL.
Thanks
Hi there,
you will need to add some CSS:
@media(min-width: 769px) {
.nav-float-right #site-navigation {
margin-left: unset;
margin-right: unset;
flex: 1;
}
#primary-menu {
margin: auto;
}
}
Hi David, that solved my issue. Thanks.
Glad to hear that!
This archived topic is closed to new replies.