gripking Posted May 25, 2006 Posted May 25, 2006 How do I make the subcategories a vertical list rather than across in a table?
Guest Posted May 25, 2006 Posted May 25, 2006 you could change your catalog\index.php for the layout, here is the categories loop while ($categories = tep_db_fetch_array($categories_query)) { $rows++; $cPath_new = tep_get_path($categories['categories_id']); $width = (int)(100 / MAX_DISPLAY_CATEGORIES_PER_ROW) . '%'; echo ' <td align="center" class="smallText" width="' . $width . '" valign="top"><a href="' . tep_href_link(FILENAME_DEFAULT, $cPath_new) . '">' . tep_image(DIR_WS_IMAGES . $categories['categories_image'], $categories['categories_name'], SUBCATEGORY_IMAGE_WIDTH, SUBCATEGORY_IMAGE_HEIGHT) . '<br>' . $categories['categories_name'] . '</a></td>' . "\n"; if ((($rows / MAX_DISPLAY_CATEGORIES_PER_ROW) == floor($rows / MAX_DISPLAY_CATEGORIES_PER_ROW)) && ($rows != $number_of_categories)) { echo ' </tr>' . "\n"; echo ' <tr>' . "\n"; } } and if you also want to change the categories listed per row change it through osc admin->configuration->maximum values.
gripking Posted June 2, 2006 Author Posted June 2, 2006 I messed up the store and had to reinstall lol. Any way you can edit that for me so it would list them with no images, and also not have tons of space in between each row?
Recommended Posts
Archived
This topic is now archived and is closed to further replies.