Hi There,

Just incase you're wanted to get the sub-category images the same size.

Step 1
find the following file

Code:
includes\modules\category_row.php

Step 2
then search for
PHP Code:
$list_box_contents[$row][$col] = array('params' => 'class="categoryListBoxContents"' ' ' 'style="width:' $col_width '%;"',
                                           
'text' => '<a href="' zen_href_link(FILENAME_DEFAULT$cPath_new) . '">' zen_image(DIR_WS_IMAGES $categories->fields['categories_image'], $categories->fields['categories_name'], SUBCATEGORY_IMAGE_WIDTHSUBCATEGORY_IMAGE_HEIGHT) . '<br />' $categories->fields['categories_name'] . '</a>'); 
and replace the zen_image with the following...
this will apply CSS styling rather than img width & height

PHP Code:
    $list_box_contents[$row][$col] = array('params' => 'class="categoryListBoxContents"' ' ' 'style="width:' $col_width '%;"',
                                           
'text' => '<a href="' zen_href_link(FILENAME_DEFAULT$cPath_new) . '"><img src="'DIR_WS_IMAGES.$categories->fields['categories_image']. '" alt="'.$categories->fields['categories_name'].'" style="width:'.SUBCATEGORY_IMAGE_WIDTH.'px;height:'.SUBCATEGORY_IMAGE_HEIGHT.'px"><br />' $categories->fields['categories_name'] . '</a>'); 
Then you will have identical sized subcategory boxes with the text at the same level.

Hope that helps