badget

Biggest Sale! Special Offer!

Get 30% discount on all of our single themes with this coupon code: #30%SALE

Hurry up! *Limited time offer*

Reply To: Navbar menu on mobile not scrolling

#61540

hi @y,

Thanks for helping us identifying the issue. We will fix the issue soon in the coming update. If you want of scroll the menu along with the site in the smaller screen views then go to Appearance > Customize > Additional CSS and paste the below custom CSS code.

@media (max-width: 991px) {
.navbar .sticky-wrapper {
	padding-top: 0 !important;
}
.is-sticky .navigation-bar {
	position: initial !important;
	top: auto !important;
	right: auto;
	left: auto;
}
.navbar .is-sticky .navbar-collapse {
	overflow: visible;
}
.navbar .sticky-wrapper.is-sticky .navbar-collapse {
	max-height: inherit !important;
}
}

Thanks