SOLVED!!!
I have modified code in intro_image.php as follows:
<figure class="pull-<?php echo htmlspecialchars($imgfloat); ?> item-image" style="min-width:<?php echo $imgW ?>px;min-height:<?php echo $imgH ?>px">
<a data-rel="prettyPhoto" title="<?php echo htmlspecialchars($images->image_intro_alt); ?>" href="<?php echo $full_img; ?>" >
<?php echo $thumb_img; ?>
</a>
</figure>
change to:
<figure class="pull-<?php echo htmlspecialchars($imgfloat); ?> item-image" style="min-width:<?php echo $imgW ?>px;min-height:<?php echo $imgH ?>px">
<a title="<?php echo htmlspecialchars($images->image_intro_alt); ?>" href="<?php echo JRoute::_(ContentHelperRoute::getArticleRoute($displayData->slug, $displayData->catid)); ?>" >
<?php echo $thumb_img; ?>
</a>
</figure>
... and it works. Thanks guys for this great template !!!