Making the Prev and Next icons always visible in Lightbox.

Adds a Lightbox slideshow to your products.
Post Reply
norman
Site Admin
Posts: 1252
Joined: Sat Feb 07, 2004 9:55 pm

Making the Prev and Next icons always visible in Lightbox.

Post 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; }
Norman
Post Reply