To change this you need to edit the index.php file and replace this section of the code
`
Recently Updated Galleries
[list]
<?php $counter = 0; while (next_album() and $counter < 6): ?>
[*]
" class="img">
<?php printCustomAlbumThumbImage(getAlbumTitle(), null, 230, null, 210, 60); ?>
"><?php printAlbumTitle(); ?>
[i](<? $number = getNumImages(); if ($number > 1) $number .= " photos"; else $number .=" photo"; echo$number; ?>)[/i] <?php $text = getAlbumDesc(); if( strlen($text) > 50) $text = preg_replace("/[^ ]*$/", '', substr($text, 0, 50))."…"; echo$text; ?>
<?php if ($counter == 2) {echo "[/list][list]";}; $counter++; endwhile; ?>
[/list]
<p class="mainbutton">[img]<?= $_zp_themeroot ?>/img/btn_gallery_archive.gif[/img]
`
With this:
`
Albums
[list]
<?php $counter = 1; while (next_album()): ?>
[*]
" class="img">
<?php printCustomAlbumThumbImage(getAlbumTitle(), null, 230, null, 210, 60, null, null, '', null); ?>
"><?php printAlbumTitle(); ?>
[i](<? $number = getNumImages(); if ($number > 1) $number .= " photos"; else $number .=" photo"; echo$number; ?>)[/i] <?php $text = getAlbumDesc(); if( strlen($text) > 50) $text = preg_replace("/[^ ]*$/", '', substr($text, 0, 50))."…"; echo$text; ?>
<?php if (($counter % 3) == 0) {echo "[/list][list]";}; $counter++; endwhile; ?>
[/list]
<?php printPageListWithNav("« prev", "next »"); ?>
`
This should give you the prev/next on your albums then.
Steve