/includes/templates/YOURTEMPLATE/templates/tpl_modules_category_icon_display.php
line 14 says:
PHP Code:
<div align="<?php echo $align; ?>" id="categoryIcon" class="categoryIcon">
<?php echo '<a href="' . zen_href_link(FILENAME_DEFAULT, $cPath_new, 'NONSSL') . '">' .
zen_image(DIR_WS_IMAGES .
zen_get_categories_image(zen_get_products_category_id((int)$_GET['products_id'])),
zen_get_categories_name(zen_get_products_category_id((int)$_GET['products_id']), $_SESSION['languages_id']), CATEGORY_ICON_IMAGE_WIDTH, CATEGORY_ICON_IMAGE_HEIGHT) .
'<br />' . zen_get_categories_name(zen_get_products_category_id((int)$_GET['products_id']), $_SESSION['languages_id']) . '</a>'; ?></div>
the very last part of that says:
PHP Code:
. '<br />' . zen_get_categories_name(zen_get_products_category_id((int)$_GET['products_id']), $_SESSION['languages_id']) . '</a>'; ?></div>
replace that last bit with:
PHP Code:
. '<br />' . '</a>'; ?></div>