You should be able to point it to an image on your local directory, it is just CSS.
If your working directory has a subdirectory called 'images' the code would look like this:
HTML Code:
setting.$wrapperdiv=$('#'+setting.wrapperid).css({position:'relative', visibility:'visible', background:url(images/image.gif), overflow:'hidden', width:setting.dimensions[0], height:setting.dimensions[1]}).empty() //main gallery DIV
If the image is in your working directory, the code would look like this:
HTML Code:
setting.$wrapperdiv=$('#'+setting.wrapperid).css({position:'relative', visibility:'visible', background:url(image.gif), overflow:'hidden', width:setting.dimensions[0], height:setting.dimensions[1]}).empty() //main gallery DIV
and so on, no different from normal HTML or CSS
Bookmarks