I have two pages of the django template, one of which is "base.html", with the basic settings for the html tags as the base template. Now I have a page "child.html" that extends it, with something like {% extends "base.html" %} in it. Now I need to change the background color <body> for this particular page, so in css "child.html" I wrote:
body { background-color: #000000; }
But the body does not seem to respond to any changes. I think I missed something. Please help, thanks.
Edit: In "child.html" I just have
<link rel="stylesheet" type="text/css" href="/site-media/css/template_conf.css"/>
and I'm trying to change body css in template_conf.css , and there is no other page that includes template_conf.css .
source share