Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

like image 768
Asme Just Avatar asked Feb 23 '14 19:02

Asme Just


1 Answers

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.

like image 74
Gavin Ching Avatar answered Oct 22 '22 22:10

Gavin Ching