Why does my navigation menu disappear when I scroll down?

Hello, I have been trying to freeze my navigation menu so that it does not disappear when I scroll down but I haven’t had much luck. Could someone tell me if there’s coding I should be applying? Below is my website link.

HM Flooring Group

Thanks!

Hi there!

My recommendation would be start with trying to change the theme settings in the theme customizer. Most themes have options to enable/disable features like this.

If that doesn’t do the trick, you can try to modify it with some CSS. The following code will ensure that the navigation stays visible. You may need to tweak the mobile optimization for it to work exactly how you envision it working however.

@media screen and (min-width: 1024px) {
.site-navigation-wrapper {
	margin-top: 0 !important;
	display: block !important;
}
.site-header-sticky--scrolled .site-header-menu-toggle {
	opacity: 0 !important;
	visibility: hidden !important;
}
.site-header-sticky--scrolled .site-header-main-content {
	margin-left: 15px;
}
}