This is the part of the CSS code that tells the browser where to get the images. It looks like they are supposed to be in a folder called "media":
Code:
background: black url(media/blockdefault.gif) center center repeat-x;
If you have them in an "images" directory, the line would change to:
Code:
background: black url("images/blockdefault.gif") center center repeat-x;
I also think the image path ought to be in quotes (as above). There are two spots in the CSS where you have to specify the path. That was the first one, and the other will be similar.
Bookmarks