Saturday, April 19, 2014

Removing Bootstrap 3 Carousel Background Gradient

Here is the very simple CSS to remove the background gradient from the Bootstrap 3 carousel.

CSS
.carousel-control.right, .carousel-control.left {
  background-image:none;
}

Changing the Color of the Bootstrap 3 Carousel Indicators

And another bit of simple CSS to change the color of the Bootstrap 3 carousel indicators.

CSS
.carousel-indicators li {
  background-color: #669966;
}
.carousel-indicators .active {
  background-color: #FF7600;
}