When in mobile mode the fixed navigation bar scrolls using the carousel, only in mobile mode it happens already tried and I do not know how to solve
When in mobile mode the fixed navigation bar scrolls using the carousel, only in mobile mode it happens already tried and I do not know how to solve
Add this css to force it to not be fixed on mobiles:
@media (max-width:480px) {
.navbar-fixed-top {
position: initial !important;
}
}