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
and replace the zen_image with the following...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_WIDTH, SUBCATEGORY_IMAGE_HEIGHT) . '<br />' . $categories->fields['categories_name'] . '</a>');
this will apply CSS styling rather than img width & height
Then you will have identical sized subcategory boxes with the text at the same level.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>');
Hope that helps



