
Originally Posted by
Red Hot Mama
I tried that. And was successful actually. But the original image I was using is a svg with a transparent background. When I saved it as a jpg the background turned white. So when it showed up on the page, it looked terrible.

Ah, in that case you'll need to change the css file.
Open "style.css" in notepad or something then search for "bg-wrap.jpg" and change it to whatever file you want, when you search for it it should come up with something like what i've said below.
I had a look and it says something like this:
Code:
background-image: url(img/bg-wrap.jpg);
All you need to do is change that filename to suit your image. I'd recommend saving the image as a .png or .gif file if your looking for transparancy
.
So if it was a .gif you'd change that line of code to:
Code:
background-image: url(img/bg-wrap.gif);
Of course you will have to put the bg-wrap.gif image into the img folder too.
Bookmarks