I want to know how to change the background-color of \'jumbotron\' class, it has a default background-color #eee in bootstrap.css.
background-color #eee
I tried to override by e
Add this to your css file
.jumbotron { background-color:transparent !important; }
It worked for me.