Well the images are not on the server, at least not where the code expects them to be. For instance, it's looking for the close image here:
Code:
http://davidfleishmandesigns.com/images/closelabel.gif
That's set here (in lightbox.js):
Code:
// -----------------------------------------------------------------------------------
//
// Configurationl
//
LightboxOptions = Object.extend({
fileLoadingImage: 'images/loading.gif',
fileBottomNavCloseImage: 'images/closelabel.gif',
overlayOpacity: 0.8, // controls transparency of shadow overlay
animate: true, // toggles resizing animations
resizeSpeed: 7, // controls the speed of the image resizing animations (1=slowest and 10=fastest)
borderSize: 10, //if you adjust the padding in the CSS, you will need to update this variable
// When grouping images this is used to write: Image # of #.
// Change it for non-english localization
labelImage: "Image",
labelOf: "of"
}, window.LightboxOptions || {});
// -----------------------------------------------------------------------------------
It's location is relative to the page using the script. To avoid confusion, or for use with pages in different folders, an absolute path may be used. Notice that the loading image is set here as well, make sure that is present and in the correct location.
As for the prev/next images. These are set in the lightbox.css file:
Code:
#prevLink:hover, #prevLink:visited:hover { background: url(../images/prevlabel.gif) left 15% no-repeat; }
#nextLink:hover, #nextLink:visited:hover { background: url(../images/nextlabel.gif) right 15% no-repeat; }
These are relative to the location of that css file. Absolute paths may be used here as well if desired. Currently they are looking here (the prev image for example):
Code:
http://davidfleishmandesigns.com/images/prevlabel.gif
Bookmarks