How to remove or customize the pagination button in Bootstrap carousel

carousel, twitter-bootstrap, twitter-bootstrap-3

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.

Problem

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

Original source