My custom CSS file is not overriding the bootstrap.min.css unless I use !important
tag in the class
This will change the color of my background header
.bg-grey{
background-color:#333 !important;
}
While this won't
.bg-grey{
background-color:#333;
}
Any idea why this is happening because I've put the external sheet right in the same directory?