and my image.php, where i exactly hav what i want to see:
`
<?php if (!defined('WEBPATH')) die(); $themeResult = getTheme($zenCSS, $themeColor, 'light'); $firstPageImages = normalizeColumns('2', '6');?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/2002/REC-xhtml1-20020801/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title><?php printGalleryTitle(); ?> | <?php echo getAlbumTitle();?></title>
<link rel="stylesheet" href="<?php echo $zenCSS ?>" type="text/css" />
<script type="text/javascript" src="<?php echo FULLWEBPATH . "/" . ZENFOLDER ?>/plugins/rating/rating.js"></script>
<link rel="stylesheet" href="<?php echo FULLWEBPATH . "/" . ZENFOLDER ?>/plugins/rating/rating.css" type="text/css" />
<link rel="stylesheet" href="<?php echo FULLWEBPATH . "/" . ZENFOLDER ?>/js/thickbox.css" type="text/css" />
<script src="<?php echo FULLWEBPATH . "/" . ZENFOLDER ?>/js/jquery.js" type="text/javascript"></script>
<script src="<?php echo FULLWEBPATH . "/" . ZENFOLDER ?>/js/thickbox.js" type="text/javascript"></script>
<script type="text/javascript">
function toggleComments() {
var commentDiv = document.getElementById("comments");
if (commentDiv.style.display == "block") {
commentDiv.style.display = "none";
} else {
commentDiv.style.display = "block";
}
}
</script>
<?php printRSSHeaderLink('Gallery','Gallery RSS'); ?>
<?php zenJavascript(); ?>
<?php require_once(SERVERPATH . "/" . ZENFOLDER . "/plugins/print_album_menu.php"); ?>
</head>
[code]
<body>
<div id="main">
<div id="gallerytitle">
<?php printHomeLink('', ' | '); ?><a>" title="Albums Index"><?php echo getGalleryTitle();?>
</a> | <?php printParentBreadcrumb("", " | ", " | "); /*printAlbumBreadcrumb("", " | ");*/printAlbumTitle(true); ?>
<?php printAlbumMenu("list","","","","",""); ?>
<!-- The Image -->
<?php if (!checkForPassword()) { ?>
<a>" title="<?php echo getImageTitle();?>">[b]<?php printDefaultSizedImage(getImageTitle()); ?>[/b]</a>
<!-- Description Start -->
<?php printImageTitle(true); ?>
<?php printImageDesc(true); ?>
<?php if (getImageEXIFData())
{echo "<div id=\"exif_link\"><a>Image Info</a>";
printImageMetadata('', false); } ?>
<?php /* printTags('links', '[b]Tags:[/b] ', 'taglist', '');*/ ?>
<?php printImageMap(); ?>
<!-- Comments Start / Not used-->
<?php if (getOption('Allow_comments')) { ?>
<?php $num = getCommentCount(); echo ($num == 0) ? "" : ("Comments ($num)[hr]"); ?>
<?php while (next_comment()){ ?>
<div class="comment">
<div class="commentmeta">
<?php printCommentAuthorLink(); ?> says:
<?php echo getCommentBody();?>
<?php echo getCommentDate();?>
,
<?php echo getCommentTime();?>
<?php printEditCommentLink('Edit', ' | ', ''); ?>
</div>
<?php }; ?>
</div>
<?php } ?>
</div>
<!-- Comment End -->
<?php } ?>
<!-- Thumbnails Start -->
<?php $_current_image = $_zp_current_image; ?>
<?php while (next_album()): next_image(); ?>
"title="<?php echo getImageTitle();?>"><?php printImageThumb(getImageTitle()); ?>
<div class="album">
<div class="thumb">
<a>" title="View album: <?php echo getAlbumTitle();?>"><?php printAlbumThumbImage(getAlbumTitle()); ?></a>
<p style="clear: both; ">
</div>
<?php endwhile; ?>
</div>
<?php while (next_image(false, $firstPageImages)): ?>
<div class="image">
<div class="imagethumb">
<a>" title="<?php echo getImageTitle();?>"><?php printImageThumb(getImageTitle()); ?></a>
</div>
<?php endwhile; ?>
<?php $_zp_current_image = $_current_image; ?>
</div>
<!-- Thumbnails Start -->
</div>
</div>
<?php printRSSLink('Gallery','','Image', ''); ?>
<!--<a>?p=archive">Archive View</a> | Powered by zenphoto-->
<?php printAdminToolbox(); ?>
[/code]
</body>
</html>
`