How to remove the navigation buttons from jquery lightbox example code

Q: Dear Support,

I want to play my photo gallery without prev/next buttons.
How to make it?

A: To remove the navigation buttons you should open visuallighrbox.css file in any text
editor, find the following code and delete it:

#vlb1prevLinkImg:hover, #vlb1prevLinkImg.hover, #vlb1prevLinkImg:visited:hover {
        background:url(prev.png) 5% center no-repeat; 
        _background-image:url(prev_ie6.gif)
}
#vlb1nextLinkImg:hover, #vlb1nextLinkImg.hover, #vlb1nextLinkImg:visited:hover { 
        background:url(next.png) 97% center no-repeat; 
        _background-image:url(next_ie6.gif)
}

Related