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.
I put the jumbotron in a <header> class and added background-color: black !important; to the header class in css.
<header>
background-color: black !important;