Is there a way to customize the background of Twitter Bootstrap 3 carousel?
I am looking for a solution where I can have a plain red background and then overlay each carousel image on top of it.
I have tried modifying the CSS of the <body>
tag to achieve the red background, but this results in the carousel images not showing up as desired.
@import url("bootstrap.min.css");
body {
background-image:url('../images/red_background.png')
}