"Slider Carousel with Indicators top position"
Bootstrap 3.3.0 Snippet by SyawaluddinAmin

<link href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css"> <script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.0/js/bootstrap.min.js"></script> <script src="//code.jquery.com/jquery-1.11.1.min.js"></script> <!------ Include the above in your HEAD tag ----------> <div class="container"> <div id="carousel-example-generic" class="carousel slide" data-ride="carousel"> <!-- Indicators --> <ol class="left carousel-indicators"> <li data-target="#carousel-example-generic" data-slide-to="0" class="active"></li> <li data-target="#carousel-example-generic" data-slide-to="1"></li> <li data-target="#carousel-example-generic" data-slide-to="2"></li> </ol> <!-- Wrapper for slides --> <div class="carousel-inner"> <div class="item active"> <img src="https://placeholdit.imgix.net/~text?txtsize=40&bg=4C4028&txtclr=ffffff&txt=SLIDE 1&w=1170&h=300" alt="..."> </div> <div class="item"> <img src="https://placeholdit.imgix.net/~text?txtsize=40&bg=4C4028&txtclr=ffffff&txt=SLIDE 2&w=1170&h=300" alt="..."> </div> <div class="item"> <img src="https://placeholdit.imgix.net/~text?txtsize=40&bg=4C4028&txtclr=ffffff&txt=SLIDE 3&w=1170&h=300" alt="..."> </div> </div> <!-- Controls --> <a class="left carousel-control" href="#carousel-example-generic" data-slide="prev"> <span class="glyphicon glyphicon-chevron-left"></span> </a> <a class="right carousel-control" href="#carousel-example-generic" data-slide="next"> <span class="glyphicon glyphicon-chevron-right"></span> </a> </div> </div>
.carousel-indicators { width: 5%; top: 10%; left: 77.5%; position: absolute; white-space: nowrap; }

Related: See More


Questions / Comments: