Top navigation
- The topic ‘Top navigation’ is closed to new replies.
Need help? Check out our Support site, then
Hi,
Is it possible to:
– align logo to the left
– align menu to the right
– make the menu sticky (navigation plus logo together)
Thank you, Caroline
The blog I need help with is: (visible only to logged in users)
Hi Caroline,
Within the Additional CSS section of the Customizer, try adding the following styles:
#header {
display: flex;
position: fixed;
z-index: 9;
background: #fff;
align-items: center;
justify-content: space-between;
}
.custom-logo-link {
text-align: left;
}
That should do the trick!
Thanks!