I made the following css script inside of my site folder(same place where templates folder is located), but when I run the script, and look at the site, the changes dont show.
I also inspected the css code, and its not finding the file I linked it to, but I'm sure the file is there in the directory I linked. Here is The Folder Structure
the code for both files:
Users/Docs/Django/src(site folder w/ manage.py)/static/base.css
body {
background-color: lightblue;
font-family: verdana;
}
Users/Django/src/templates/base.html
{% load static %}
<!doctype html>
<html>
<head>
<link rel="stylesheet" href="{% static 'base.css' %}">
<title>Coding for Entrepreneurs is doing Try Django</title>
</head>
<body>
{% include 'navbar.html' %}
{% block content %}
AAAAAA
{% endblock %}
</body>
</html>