No, that's only the background-color. You cannot enter an image there. The best bet is to use css. I've done it with css for several folks in the past. Are you at all familiar with css?
Anyways, if you don't already have one, put this stylesheet in the head of your page, otherwise add its rule to your existing stylesheet:
Code:
<style type="text/css">
#master0 div {
background: white url(yourimage.jpg) 50px 25px;
}
</style>
Replace yourimage.jpg with the filename of the background image. If it's not in the same folder as the page, include its path. The 50px is the left coordinate and the 25px is the top coordinate. Adjust these as necessary to get it to line up with the 'real' background. The white is a throwaway. It will be replaced by the fadecolor. Use a solid fadecolor though, it will be used if the browser cannot load the background image.
As I say though, it depends upon the layout. If you couldn't get it to work with making the images themselves have background, this might not be any better. It will allow you to tweak it more easily though than having to keep making new images up via trial and error would.
If you want more help:
Please post a link to a page on your site that contains the problematic code so we can check it out.
Bookmarks