Bootstrap Tutorial - Create Carousel with descriptions not dot








The following code shows how to create Carousel with descriptions not dot.

Example

<!DOCTYPE html>
<html>
<head>
<script type='text/javascript'
  src='http://code.jquery.com/jquery-2.0.2.js'></script>
<link rel="stylesheet" type="text/css"
  href="http://netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css">
<script type='text/javascript'
  src="http://netdna.bootstrapcdn.com/bootstrap/3.0.0/js/bootstrap.min.js"></script>
<link rel="stylesheet" type="text/css"
  href="http://netdna.bootstrapcdn.com/font-awesome/3.2.1/css/font-awesome.min.css">
<style type='text/css'>
@media screen and (min-width: 550px) {
  .carousel-indicators>li, .carousel-indicators>li.active {
    width: 100px;
    height: 25px;
    border-radius: 0;
    border: solid 1px grey;
    background: lightgrey;
    text-indent: 0;<!--   ww w.j  a  va 2s .  c  o  m-->
  }
  .carousel-indicators>li.active {
    background: white;
  }
}
</style>
</head>
<body>
  <div id="myCarousel" class="carousel slide">
    <!-- Indicators -->
    <ul class="carousel-indicators">
      <li data-target="#myCarousel" data-slide-to="0" class="active">One</li>
      <li data-target="#myCarousel" data-slide-to="1">Two</li>
      <li data-target="#myCarousel" data-slide-to="2">Three</li>
    </ul>
    <!-- Inner -->
    <div class="carousel-inner">
      <div class="item active">
        <img src="http://lorempixel.com/1500/600/abstract/2"
          class="img-responsive" />
        <div class="container">
          <div class="carousel-caption">
            <h1>Bootstrap 3 Carousel Layout</h1>
            <p>Hello!</p>
            <p>
              <a class="btn btn-lg btn-primary" href="http://getbootstrap.com">Learn
                More</a>
            </p>
          </div>
        </div>
      </div>
      <div class="item">
        <img src="http://lorempixel.com/1500/600/abstract/1"
          class="img-responsive" />
        <div class="container">
          <div class="carousel-caption">
            <h1>Changes to the Grid</h1>
            <p>Bootstrap 3 still features a 12-column grid, but many of
              the CSS class names have completely changed.</p>
            <p>
              <a class="btn btn-large btn-primary" href="#">Learn more</a>
            </p>
          </div>
        </div>
      </div>
      <div class="item">
        <img src="http://lorempixel.com/1500/600/abstract/2"
          class="img-responsive" />
        <div class="container">
          <div class="carousel-caption">
            <h1>Percentage-based sizing</h1>
            <p>With "mobile-first" there is now only one percentage-based
              grid.</p>
            <p>
              <a class="btn btn-large btn-primary" href="#">Browse gallery</a>
            </p>
          </div>
        </div>
      </div>
    </div>
    <!-- Controls -->
    <a class="left carousel-control" href="#myCarousel" data-slide="prev">
      <span class="icon-prev"></span>
    </a> <a class="right carousel-control" href="#myCarousel"
      data-slide="next"> <span class="icon-next"></span>
    </a>
  </div>
  <!-- Post Info -->
  <div
    style='position: fixed; bottom: 0; left: 0; background: lightgray; width: 100%;'>
    About this SO Question: <a
      href='http://stackoverflow.com/q/23516861/1366033'>Create
      bootstrap carousel with captions instead of dots</a> <br />Fork This
    Skeleton Here <a href='http://jsfiddle.net/KyleMit/kcpma/'>Bootrsap
      3.0 Skeleton</a> <br />
    <div>
</body>
</html>

Click to view the demo