Was just playing with the themes that came with V1.0.7
All the themes, as you say, truncate the first link -- except Stopdesign.
Here is the code from the album.php based off one of the themes.
Thanks again.
`
<html>
<head>
<title><?php printGalleryTitle(); ?> | <?php echo getAlbumTitle();?></title>
<link rel="stylesheet" href="<?php echo $_zp_themeroot ?>/zen.css" type="text/css" />
<?php zenJavascript(); ?>
</head>
<body>
<div id="gallerytitle">
<?php echo getGalleryTitle();?> | <?php printAlbumTitle(true);?>
<p class="albumdesc2"><?php printAlbumDesc(true); ?>
<div id="images">
<?php while (next_image()): ?>
<div class="image">
<div class="imagethumb">"><?php printImageThumb(getImageTitle()); ?>
</div>
<?php endwhile; ?>
</div>
<?php printPageListWithNav("« prev", "next »"); ?>
<?php printSortableAlbumLink('Click to sort album', 'Manual sorting', NULL, 'credit'); ?>
</div>
</div>
</body>
</html>`