Currently, in my Django project, I am attempting to customize the base.html file which is utilizing the default bootstrap.min.css by replacing it with a custom.css file like so:
base.html:
<body id="bootstrap-overrides">
custom.css:
#bootstrap-overrides body {
color: blue;
}
#bootstrap-overrides h1 {
color: green;
}
#bootstrap-overrides p.uppercase {
text-transform: uppercase;
}
However, despite making these changes, nothing appears to be different. Could this issue potentially be related to routing in Django?