I have been working on my website using Bootstrap libraries and I am trying to customize certain aspects of the parent layout such as the background color and jumbotron color. However, no matter what I try, I cannot seem to make it work.
Can anyone help me with applying CSS in conjunction with Bootstrap?
.jumbotron
{
background-color: blue !important;
}
#body
{
background-color: grey;
}
<body>
<div class="body">
<div class="jumbotron">
<div class="container text-center">
<p>"Quote goes here"</p>
<h1>Site name</h1>
<p>Motto and slogan goes here</p>
</div>
</div>
</div>
</body>
Any assistance would be greatly appreciated!