Theme in use: default/dark
I want to change the way the albums are listed in my gallery. Instead of showing 3 albums per line, I want to show 1 album per line. There should be 3 unique images shown for each album.
How can I make ZenPhoto show 3 unique album thumbnail images instead of only 1?
Also - How do you display the total number of images inside an album?
Thank you for your help.
Code - zenphoto\themes\default\album.php ------------------------
<div id="padbox">
<?php printAlbumDesc(true); ?>
<div id="albums">
<?php while (next_album()): ?>
<div class="album">
<div class="thumb">
<a>" title="<?php echo gettext('View album:'); ?> <?php echo getAnnotatedAlbumTitle();?>"><?php printAlbumThumbImage(getAnnotatedAlbumTitle()); ?></a>
</div>
<div class="albumdesc">
<h3><a>" title="<?php echo gettext('View album:'); ?> <?php echo getAnnotatedAlbumTitle();?>"><?php printAlbumTitle(); ?></a></h3>
<small><?php printAlbumDate(""); ?></small>
<p><?php printAlbumDesc(); ?></p>
</div>
<p style="clear: both; "></p>
</div>
<?php endwhile; ?>
</div>
- Code -----------------------