views:

236

answers:

1

In LightBox, is there a way to always show the navigation Next button?

+1  A: 

Hi,

I'm assuming you're using Lightbox 2

Open your lightbox.css file and change these two lines:

#prevLink { left: 0; float: left; }
#nextLink { right: 0; float: right; }

to

#prevLink { left: 0; float: left; background: url(../images/prevlabel.gif) left 15% no-repeat;}
#nextLink { right: 0; float: right; background: url(../images/nextlabel.gif) right 15% no-repeat;}

I've only tested this in Safari but it should be OK in everything else. Famous last words eh?

Jamesz