Question

I have switched to the jQuery lightBox plug in.

How do I set it so that the next and previous buttons always show. My users are not quick enough to know you have to mouse the mouse over the image to see more.

Was it helpful?

Solution

Put this in the .lightBox() call

.lightBox({fixedNavigation:true})

OTHER TIPS

change

$('a[@rel*=lightbox]').lightBox();

to

$('a[@rel*=lightbox]').lightBox().lightBox({fixedNavigation:true});

In the jquery.lightbox.min.css change

#lightbox-nav-btnNext{display:block;width:49%;height:100%

to

#lightbox-nav-btnNext{display:block;width:0%;height:0%
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top