Like I said, set it up on a separate page using the images you intend to use. Or even on a page like you've just mentioned in your post. Include on that page the background you want, either behind the show, or as a separate image on the page. Give me a link to the page.
The slideshow uses a default black background for itself and two gallery layer divsions that it generates (these are used to achieve the fading effects). That (black background) can be overridden with css style. An image can be used, but positioning it optimally can be tricky, it depends upon how it all lays out, and the images involved dictate that. I've done this many times and it almost always can be worked out really well.
If you want to play with it yourself, the basic css style is:
Code:
<style type="text/css">
#fadeshow1, #fadeshow1 .gallerylayer {
background-color: white !important; /* fall back background color if image is missing */
background-image: url("pathto/your_background_image.jpg") !important; /* the background image to use */
background-position: 536px 549px !important; /* left and top coordinates for positioning the background image */
}
</style>
where fadeshow1 is the wrapperid for the slideshow. The background position may or may not be needed. In your case if it is needed, it will probably be much lower numbers. The !important keywords are required to override the scripted values for these elements. Also, you may want to make your slideshow's dimensions larger than the images. They will be centered within it, leaving room around the edges for the background image to show through.
If you want more help with it, put up a page like I said above and give me a link to it.
Bookmarks