You may use the absolute path to the next/previous images or a path that is relative to the css file. Editing paths in the script is not required for the next/previous labels.
In your case, this (absolute network path) would work:
Code:
#prevLink { left: 0; float: left;background: url(/Files/Billeder/Gallery/prevlabel.gif) left 15% no-repeat;}
#nextLink { right: 0; float: right;background: url(/Files/Billeder/Gallery/nextlabel.gif) right 15% no-repeat;}
#prevLink:hover, #prevLink:visited:hover { background: url(/Files/Billeder/Gallery/prevlabel.gif) left 15% no-repeat; }
#nextLink:hover, #nextLink:visited:hover { background: url(/Files/Billeder/Gallery/nextlabel.gif) right 15% no-repeat; }
However, there will be no next/previous navigation (and hence no next/previous label images) unless you have two or more unique images in a lightbox group (the script automatically removes duplicates). I see only one unique image in the 'group' (one image isn't really a group) on your demo page.
Bookmarks