Archived topic
Move Navigation menu up
1 reply · Started by Evan on February 17, 2020
On my site, currently under development. I would like the menu to move up and be aligned to the right of the logo. I have two buttons in the header the seem to be pushing it down. I am placing this with and Elements hook, before logo.
There appears to be plenty of room for the menu to move up. How can I do this?
Hi there,
Its a tricky design to get right. For example - a simple fix would be this CSS:
@media (min-width: 769px) {
.site-logo {
position: absolute;
top: 25px;
}
}
But ... you will find the navigation will overlap the logo on narrower screens.
One fix to this would be to increase the Mobile Menu Breakpoint so it kicks in earlier:
You will need to adjust the above CSS @media (min-width: 769px) to match.