Archived topic
Move Main Navigation Up for Sticky Navigation Too
3 replies · Started by Vic on October 2, 2021
The site logo and primary navigation menu in the header for all pages seem to be centered?
I am happy with the position of the site logo from the top.
However I wanted the primary navigation menu position to be higher. Aligned with the top of the site logo rather than the center.
I found this code which does that (is there better code)?
.main-navigation {
margin-top: -50px;
}
However this does not apply to the sticky navigation.
Is there some additional code that would make the sticky navigation position from the top the same?
Thankyou.
Hi there,
try this CSS:
.main-navigation.sticky-navigation-transition .main-nav > ul > li > a {
line-height: 1 !important;
margin-top: -40px;
}
Thankyou very much David. That is spot on.
Glad to be of help!