Sticky header #139
Answered
by
vovayatsyuk
dheerajKsharma
asked this question in
1. Help
-
Hi, |
Beta Was this translation helpful? Give feedback.
Answered by
vovayatsyuk
May 22, 2023
Replies: 1 comment
-
You can do this with a custom css file: .navigation-wrapper {
position: sticky;
top: 0;
left: 0;
z-index: 50;
background: #fff;
} If you want to stick the whole header with navigation, you need to move navigation inside the header, and then add similar styles, but for the |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
dheerajKsharma
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You can do this with a custom css file:
If you want to stick the whole header with navigation, you need to move navigation inside the header, and then add similar styles, but for the
.page-header
selector.