79195499

Date: 2024-11-16 15:56:12
Score: 2
Natty:
Report link

(1) Firstly is your css file named styles.css ?

(2) Is your folder structure similar to as follows: blog/ static/ css/ styles.css templates/ your_template.html

(3) Does this reflect your settings.py: STATIC_URL = '/static/' # Base URL for static files

Ensure STATICFILES_DIRS is correctly set

STATICFILES_DIRS = [ BASE_DIR / "blog" / "static",
]

Reasons:
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: digital_seagull