No matter. The products on top of each other is normal, but you could spread them a littel by adding the following to your stylesheettd.productListing-data {padding: 10px 0}
No matter. The products on top of each other is normal, but you could spread them a littel by adding the following to your stylesheettd.productListing-data {padding: 10px 0}
Kuroi Web Design and Development | Twitter
(Questions answered in the forum only - so that any forum member can benefit - not by personal message)
awesome, one last thing
how do i remove the words below the subcategory pictures (the oval shapes (sits at waist & low rise))
/includes/templates/YOURTEMPLATE/templates/tpl_modules_category_icon_display.php
line 14 says:the very last part of that 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>replace that last bit with:PHP Code:. '<br />' . zen_get_categories_name(zen_get_products_category_id((int)$_GET['products_id']), $_SESSION['languages_id']) . '</a>'; ?></div>
PHP Code:. '<br />' . '</a>'; ?></div>
.
Zen Cart - putting the dream of business ownership within reach of anyone!
Donate to: DrByte directly or to the Zen Cart team as a whole
Remember: Any code suggestions you see here are merely suggestions. You assume full responsibility for your use of any such suggestions, including any impact ANY alterations you make to your site may have on your PCI compliance.
Furthermore, any advice you see here about PCI matters is merely an opinion, and should not be relied upon as "official". Official PCI information should be obtained from the PCI Security Council directly or from one of their authorized Assessors.
much appreciated, it makes sense to me, but it didn't work
You need to create and edit an includes/modules/YOUR_TEMPLATE/category_row.php file by removing the text marked in red below (lines 38-39)$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>');
Kuroi Web Design and Development | Twitter
(Questions answered in the forum only - so that any forum member can benefit - not by personal message)
that worked. thanks!!