Now, i get a highlighted thumb (that´s great!) but all thumbs in the same row are somehow not clickable anymore. thumbs below are!
And also the thumbnails are dynamicly swaping their position. Maybe it´s a problem with the previous code. Here is my actualized code:
`
<?php $_current_image = $_zp_current_image; ?>
<?php while (next_album()): next_image(); ?>
"title="<?php echo getImageTitle();?>"><?php printImageThumb(getImageTitle()); ?>
">
<?php printAlbumThumbImage(getAlbumTitle()); ?>
<?php endwhile; ?>
<?php $currentimagetitle = getImageTitle(); while (next_image(false, $firstPageImages)):
if($currentimagetitle === getImageTitle()) { ?>
<div class="imagethumb_active">
"><?php printImageThumb(getImageTitle()); ?>
<?php } else { ?>
"><?php printImageThumb(getImageTitle()); ?>
<?php } ?>
<?php endwhile; ?>
<?php $_zp_current_image = $_current_image; ?>
`
</div>