For sure. Here is the image.php code. The thumbs are wrapped in the smallthumb div.
<?php if (!defined('WEBPATH')) die(); $themeResult = getTheme($zenCSS, $themeColor, 'light'); $firstPageImages = normalizeColumns('2', '6');?>
<?php require($_SERVER['DOCUMENT_ROOT'].'/phauxshow/wp-blog-header.php'); ?>
<?php get_header(); ?>
<?php db_connect(); // reconnect to zenphoto db ?>
<div id="main">
<div id="gallerytitle">
<h2><span><?php printHomeLink('', ' | '); ?><a>" title="<?php gettext('Albums Index'); ?>"><?php echo getGalleryTitle();?>
</a> <?php printParentBreadcrumb("", " | ", " | "); printAlbumBreadcrumb("", " | "); ?>
</span> <?php printImageTitle(true); ?>
</h2>
</div>
<!-- The Image -->
<div id="smallthumb">
<?php
$remember=$_zp_current_image;
if (!is_null($_zp_current_search)) {
$images = $_zp_current_search->getSearchImages();
$x=0;foreach( $images as $image ){
$current=$_zp_current_search->getImage($x);$x=$x+1;
$_zp_current_image=$current;
?>
<a>" ><?php printCustomSizedImage('', null,
50, 45); ?></a>
<?php }}
if (is_null($_zp_current_search)) {
$images=$_zp_current_album->getImages();
while (next_image(true)): ?>
<a>" ><?php printCustomSizedImage('', null,
50, 45); ?></a>
<?php endwhile;
$_zp_current_image=$remember;
}?>
</div>
<?php if (!checkForPassword()) { ?>
<div id="image">
<a>" title="<?php echo getImageTitle();?>">[b]<?php printDefaultSizedImage(getImageTitle()); ?>[/b]</a>
</div>
<div id="albumdesc">
<?php printAlbumDesc(true); ?>
</div>
<div id="narrow">
<hr />
<?php printTags('links', gettext('[b]Tags:[/b] '), 'taglist', ''); ?>
<?php if (getOption('Allow_comments')) { ?>
<div id="comments">
<?php comments_popup_script(width, height); ?>
<?php $num = getCommentCount(); echo ($num == 0) ? "" : ("<h3>".gettext("Comments")." ($num)</h3><hr />"); ?>
<?php while (next_comment()){ ?>
<div class="comment">
<div class="commentmeta">
<span class="commentauthor"><?php printCommentAuthorLink(); ?></span> says:
</div>
<div class="commentbody">
<?php echo getCommentBody();?>
</div>
<div class="commentdate">
<?php echo getCommentDate();?>
,
<?php echo getCommentTime();?>
<?php printEditCommentLink(gettext('Edit'), ' | ', ''); ?>
</div>
</div>
<?php }; ?>
<?php if (OpenedForComments()) { ?>
<div class="imgcommentform">
<!-- If comments are on for this image AND album... -->
<h3><?php echo gettext("Have your say!"); ?></h3>
<form id="commentform" action="#" method="post">
<div><input type="hidden" name="comment" value="1" />
<input type="hidden" name="remember" value="1" />
<?php printCommentErrors(); ?>
<table border="0">
<tr>
<td><input type="text" id="name" name="name" size="20" value="<?php echo $stored[0];?>" class="inputbox" />
</td>
<td><label for="name"><?php echo gettext("Name"); ?></label></td>
</tr>
<tr>
<td><input type="text" id="email" name="email" size="20" value="<?php echo $stored[1];?>" class="inputbox" />
</td>
<td><label for="email"><?php echo gettext("Email"); ?></label></td>
</tr>
<tr>
<td><input type="text" id="website" name="website" size="40" value="<?php echo $stored[2];?>" class="inputbox" /></td>
<td><label for="website"><?php echo gettext("Site"); ?></label></td>
</tr>
<?php if (getOption('Use_Captcha')) {
$captchaCode=generateCaptcha($img); ?>
<tr>
<td><label for="code"><?php echo gettext("Enter Captcha:"); ?><img src=<?php echo "\"$img\"";?> alt="Code" align="absbottom"/></label></td>
<td><input type="text" id="code" name="code" size="20" class="inputbox" /><input type="hidden" name="code_h" value="<?php echo $captchaCode;?>"/></td>
</tr>
<?php } ?>
</table>
<textarea name="comment" rows="6" cols="40"></textarea>
<input type="submit" value="<?php echo gettext('Add Comment'); ?>" class="pushbutton" /></div>
</form>
</div>
</div>
<?php } else { echo gettext('Comments are closed.'); } ?>
<?php } ?>
</div>
<?php } ?>
</div>
</div>
<?php $wpdb->select(DB_NAME); // reconnect wordpress db ?>
<?php get_comments(); ?>
<div id="footerad">
<script type="text/javascript"><!--
google_ad_client = "pub-2132326656330468";
/* 468x60, created 4/26/08 */
google_ad_slot = "9379116265";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</div>
</body>
</html>