FaqsGeneric
Sticky header when scrolling
1 min read
- From your Shopify admin, go to Online store.
- Locate the theme you want to make changes, click Action > Edit code.
- Find Assets > custom.css.liquid file and add the custom CSS below:
- For Minimog version 3.5.0 and older:
.scroll-down.stuck .header__wrapper {
transform: none !important;
}- For Minimog version 4.0.0 and above:
.scroll-down.stuck .m-header__wrapper {
transform: none !important;
}Last updated