okay so I didn't make any changes to my settings.py, the image I want to use in my css is here.
C:\djcode\testapp1\testing1\testingapp1\static\testingapp1\images
my style.css file is in here.
C:\djcode\testapp1\testing1\testingapp1\static\testingapp1
my manage.py file is in here.
C:\djcode\testapp1\testing1
and my settings.py file is in here.
C:\djcode\testapp1\testing1\testing1
My templates (including index.html) are here.
C:\djcode\testapp1\testing1\testingapp1\templates
In my index.html file, I linked the css by typing this on the top of my index.html file.
{% load staticfiles %}
<link rel="stylesheet" type="text/css" href="{% static 'testingapp1/style.css' %}" />
I tried using the image in my css file by doing this.
background: url(images/picture.png);
I also tried.
background: url({% static 'testingapp1/images/picture.png' %})
but that didn't work either. Any idea what is wrong?