Fixed error navigation bar when using Carousel

Asked

Viewed 51 times

0

When in mobile mode the fixed navigation bar moves in the scroll using Carousel, only in mobile mode it happens I’ve tried and I don’t know how to fix it

Example

1 answer

0

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

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

Browser other questions tagged

You are not signed in. Login or sign up in order to post.