You are using Categories Dressing, and one of the expanded category mods, so I will address this accordingly.
Considering the fact that you want three of the top categories (New Arrivals, Package Deals and Closeout) to be clickable, and the rest not, this approach will work best:
In /includes/templates/your_template/sideboxes/tpl_categories.php, find
PHP Code:
$content .= '<a class="' . $new_style . $cat_img_bg . '" href="' . zen_href_link(FILENAME_DEFAULT, $box_categories_array[$i]['path']) . '">';
//(12 lines below)
$content .= '</a>';
and change to
PHP Code:
if ($new_style == 'category-top') {
$content .= '<div class="' . $new_style . $cat_img_bg . '" href="' . zen_href_link(FILENAME_DEFAULT, $box_categories_array[$i]['path']) . '">';
} else {
$content .= '<a class="' . $new_style . $cat_img_bg . '" href="' . zen_href_link(FILENAME_DEFAULT, $box_categories_array[$i]['path']) . '">';}
//(12 lines below)
if ($new_style == 'category-top') {
$content .= '</div>';
} else {
$content .= '</a>';
}
By the way, I like your implementation, but have one suggestion: the top three links run together and it is not obvious that they are different links. If you give them a hover color, it will be obvious that they are separate links.
Bookmarks