It's possible but can be a little tricky. The slides need some background (solid color or image) otherwise the result - particularly with various different sized images - will not be pretty. That said, a css style selector for where that background is applied would be (for the first slide show on a page, increment 0 for each subsequent show, if any):
so you could put this in your stylsheet:
Code:
#master0 div {
background: url(whatever.gif)!important;
}
and it will override what the script is placing as the background on these divisions which hold the slides. However, even if you use the same image as is used for the background of the page, chances are it won't line up with the page's background. If your page's background image is at all complex, this will probably look odd. But you can use the css background's property positioning values to get it to line up, assuming your layout is fixed enough to allow for this.
For more info on how that works see:
http://www.blooberry.com/indexdot/cs...bg/bgposit.htm
or your favorite css reference.
Bookmarks