Page 1 of 1

Making the Prev and Next icons always visible in Lightbox.

Posted: Tue May 13, 2008 12:19 pm
by norman
If you're using the Lightbox variant, the following will make the Prev and Next icons always show.

Edit lightbox.css (in your Site folder).

Look for the pair of lines (about line 54):

Code: Select all

#prevLink:hover, #prevLink:visited:hover { background: url(li_prevlabel.gif) left 15% no-repeat; }
#nextLink:hover, #nextLink:visited:hover { background: url(li_nextlabel.gif) right 15% no-repeat; }
Replace them with:

Code: Select all

#prevLink:link, #prevLink:hover, #prevLink:visited:hover { background: url(li_prevlabel.gif) left 15% no-repeat; }
#nextLink:link, #nextLink:hover, #nextLink:visited:hover { background: url(li_nextlabel.gif) right 15% no-repeat; }