With this script that can get tricky. You don't really need to edit the script though. Overriding styles may be used. Overriding style employs the:
!important
keyword.
So let's say that your page's background image is myBricks.gif and the wrapperid for the slide show is fadeshow1:
Code:
<style type="text/css">
#fadeshow1, #fadeshow1 .gallerylayer {
background-image: url(myBricks.gif)!important;
background-position: center!important;
}
</style>
It is the highlighted property that is important in order to get it to line up with the page background image. You may specify a left and top coordinate, example:
HTML Code:
background-position: 10px 30px!important;
If your layout is rigid enough, this will (with enough trial and error) work out.
Bookmarks