In your CSS try replacing:
Code:
#prevLink { background: url(../lightbox2/images/prevlabel.gif) left 15% no-repeat; }
#nextLink { background: url(../lightbox2/images/nextlabel.gif) right 15% no-repeat; }
With:
Code:
#prevLink { background: url(../../lightbox2/images/prevlabel.gif) left 15% no-repeat; }
#nextLink { background: url(../../lightbox2/images/nextlabel.gif) right 15% no-repeat; }
And if that doesn't work:
Code:
#prevLink { background: url(http://www.cabinetinteriors.com/gallery/lightbox2/images/prevlabel.gif) left 15% no-repeat; }
#nextLink { background: url(http://www.cabinetinteriors.com/gallery/lightbox2/images/nextlabel.gif) right 15% no-repeat; }
Bookmarks