I'm having a problem with the django templating system.
I have a template with html, css, and js. When I use this template for my site, all of its margins and paddings change, and my template seems to become another template. For example margin 0 auto;
seems to become margin 0 0;
.
Note: I have a temp.html
file and, for example, in the index of my home app, I have a file index.html
that contains a {% extends "temp.html" %}
tag and other block that they are in temp.html
. (ed: ?)
If you need more code, please let me know.