First off, your site is now password protected, so I am having to work from a cached copy of your http://flyonredbaron.net/jasta5/j5styles.css file.
These paths (red):
Code:
#prevLink:hover, #prevLink:visited:hover { background: url(../images/lightbox/prevlabel.gif) left 15% no-repeat; }
#nextLink:hover, #nextLink:visited:hover { background: url(../images/lightbox/nextlabel.gif) right 15% no-repeat; }
in it are most likely wrong. Just guessing (without access to the site, I can only guess) from the way that you say your site is organized, they should be:
Code:
#prevLink:hover, #prevLink:visited:hover { background: url(images/lightbox/prevlabel.gif) left 15% no-repeat; }
#nextLink:hover, #nextLink:visited:hover { background: url(images/lightbox/nextlabel.gif) right 15% no-repeat; }
In any case, the paths in the css file should be relative to the css file, not to the page that is using them, or you could use the absolute paths, which you've said are:
Code:
#prevLink:hover, #prevLink:visited:hover { background: url(http://flyonredbaron.net/jasta5/images/lightbox/prevlabel.gif) left 15% no-repeat; }
#nextLink:hover, #nextLink:visited:hover { background: url(http://flyonredbaron.net/jasta5/images/lightbox/nextlabel.gif) right 15% no-repeat; }
Bookmarks