First I created a "static" folder and added a css file in this folder. Then I added STATIC_ROOT = BASE_DIR / 'myStaticFiles'
in the 'settings.py'. I followed a tutorial.
I run this command: py manage.py collectstatic
All the files copied to 'myStaticFiles'. Now, it's my question: Should I add more css files in the 'static' folder or 'myStaticFiles'? It's a bit confusing to me. Django Tutorials
I followed the tutorials step by step, but didn't get the result. Explained as above.