Bluebutterfly - I did some playing around with the css today and here is how you would put an image on top of the background (and under the forum) (tested and works with IE and Firefox)
This takes 2 edits to the css, then an addition to your HEADER:
In the css look for the body area (where you put the background image)
Add this to that section:
position:absolute;
z-index: 1;
Then to position the image add this to your css (top or bottom of it, does not matter)
#bgimage2
{
position:absolute;
right: 500px;
top: 200px;
z-index:-1;
}
In the above code are the coordinates - where you want the graphic on the page.
You will need to change those numbers so the image is where you want it to be.
(The coords in the code above would place the image 500px from the right edge of the screen and 200px from the top. )
Last step:In your HEADER do this:
<img id="bgimage2" src="THE URL OF THE IMAGE">
Replace THE URL OF THE IMAGE with your image url.
NOTE: you can change
bgimage2 to any word you choose. Just be sure it is the same in both the css and the Header.