"Slider Carousel with Indicators rightside 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 class="row text-center"> <h2>SLIDER CAROUSEL WITH INDICATORS RIGHTSIDE POSITION</h2> <h4>Syawaluddin Amin, S.Kom</h4> </div> <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="http://placehold.it/1170x300.jpg" alt="..."> --> <img src="https://placeholdit.imgix.net/~text?txtsize=40&bg=F2D44E&txtclr=ffffff&txt=SLIDE 1&w=1170&h=300" alt="..."> </div> <div class="item"> <img src="https://placeholdit.imgix.net/~text?txtsize=40&bg=F2D44E&txtclr=ffffff&txt=SLIDE 2&w=1170&h=300" alt="..."> </div> <div class="item"> <img src="https://placeholdit.imgix.net/~text?txtsize=40&bg=F2D44E&txtclr=ffffff&txt=SLIDE 3&w=1170&h=300" alt="..."> </div> </div> <div class="row text-center"> <h6>More tutorial : <a href="http://pangeran-it.blogspot.de/" target="_blank">PANGERAN IT</a></h6> </div> </div> </div>
.carousel-indicators { width: 5%; bottom: 40%; margin-left: 40%; -webkit-transform: rotate(90deg); -webkit-transform-origin: right top; -moz-transform: rotate(90deg); -moz-transform-origin: right top; -ms-transform: rotate(90deg); -ms-transform-origin: right top; -o-transform: rotate(90deg); -o-transform-origin: right top; transform: rotate(90deg); transform-origin: right top; position: absolute; white-space: nowrap; }

Related: See More


Questions / Comments: