Error fixed navigation bar when using Carousel

0

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

Example

    
asked by anonymous 01.06.2017 / 12:48

1 answer

0

Add this css to force it to not be fixed on mobiles:

@media (max-width:480px) {
  .navbar-fixed-top {
    position: initial !important;
  }
}
    
01.06.2017 / 13:35