Bootstrap 3 default Carousel: How to move indicators down and outside of slide container?

You can push them below the slider like this…

.carousel-indicators {
  bottom:-50px;
}

Leave space below the carousel so that the pushed indicators don’t interfere with content below the slider..

.carousel-inner {
   margin-bottom:50px;
}

Demo

Leave a Comment