Skip to content

Instantly share code, notes, and snippets.

@wplit
Last active January 1, 2021 06:37
Show Gist options
  • Select an option

  • Save wplit/5b82288eeac02d48b60dea89f27c6723 to your computer and use it in GitHub Desktop.

Select an option

Save wplit/5b82288eeac02d48b60dea89f27c6723 to your computer and use it in GitHub Desktop.
megamenu inside sticky header, scrollable
.oxy-sticky-header-active .oxy-mega-menu {
background: none!important;
}
.oxy-sticky-header-active .oxy-mega-dropdown {
background-color: var(--megamenu-responsive-background);
}
@media (max-width: 991px) { /* Change to screen width of your mobile menu */
.oxy-sticky-header-active .oxy-mega-menu {
height: calc(100vh - 72px); /* Change 72px to height of sticky header */
overflow-y: auto;
}
.oxy-sticky-header-active .oxy-mega-menu_mobile .oxy-mega-dropdown {
height: auto;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment