I have noticed that my custom CSS file does not override the bootstrap.min.css unless I include the !important
tag in the class.
Specifically, when I try to change the color of my background header.
.bg-grey{
background-color:#333 !important;
}
The following code, however, fails to alter the background color:
.bg-grey{
background-color:#333;
}
Do you have any insights on why this is happening? I have placed the external stylesheet in the same directory as well.