Search code examples
twitter-bootstraptwitter-bootstrap-3carousel

How to remove or customize the pagination button in Bootstrap carousel


I'd like to remove the default button (or white dot) in Bootstrap carousel. Is it possible to customize them?

enter image description here


Solution

  • In terms of hiding, you can use CSS to make it hidden. For example,

    .carousel-indicators li { visibility: hidden; }
    

    would make all the dots be hidden.