@tonygamble
You could turn the paging text into a link to the next page of thumbnails but you'd need to use some custom JavaScript and the Juicebox-Pro API as follows:
<!--START JUICEBOX EMBED-->
<script src="jbcore/juicebox.js"></script>
<script>
var jb = new juicebox({
containerId: "juicebox-container",
showPagingText: "TRUE"
});
jb.onInitComplete = function() {
$('.jb-idx-thb-list-page-number').click(function() {
var current = jb.getThumbPageIndex(); // Determine the current thumbnail page
jb.showThumbPage(current + 1); // Show the next thumbnail page
});
};
</script>
<div id="juicebox-container"></div>
<!--END JUICEBOX EMBED-->
(You'd need more code to enable looping.)
However, there is a much easier way to navigate between thumbnail pages.
Small Screen Mode (where thumbnails and main images are displayed on separate pages)
On a touch enabled device, you can navigate between thumbnail pages by swiping the screen left (for the previous page of thumbnails) or right (for the next page of thumbnails).
Additionally, you can set showSmallThumbNav="TRUE" (in JuiceboxBuilder-Pro's 'Customize -> Thumbnails' section) to display thumbnail navigation buttons (to the left and right of the thumbnails). This takes up a little more space on the page but might give your users a more intuitive method of navigating between your thumbnail pages.
Large Screen Mode (where thumbnails and main images are displayed together)
In Large Screen Mode, Juicebox automatically displays thumbnail navigation buttons which can be positioned via the thumbNavPosition configuration option (also in 'Customize -> Thumbnails') either:
For reference, a list of all Thumbnail Options can be found here.
I hope this helps.