views:

138

answers:

1

In our project we use plugin for jQuery - Galleriffic (http://www.twospy.com/galleriffic/), it allows you to do slideshow with photo set.

How to hide buttons prev/next in "pagination" block?

In the navigation ("pagination" block) should be only the page numbers without buttons prev/next.

A: 

I found the solution:

In jquery.gallerific.js is a function which is responsible for creating the block "pagination" (it is called "buildPager"), in it creates the buttons prev/next.

We must find in "buildPager" line "/ / Prev Page Link" and put to the button "prev" class "hide" (in the css should be spelled out the relevant rule - .hide{display: none;}).

A similar procedure should be done and for the button "next".

Kalinin
good!.... :D cheers!
Reigel