Is there a way to move the category title links in my center column to ABOVE the image, so they can be more visible? http://www.musecards.com/store/index.php?main_page=
Printable View
Is there a way to move the category title links in my center column to ABOVE the image, so they can be more visible? http://www.musecards.com/store/index.php?main_page=
Hi,
Based on your site this response might be too late, but since I actually know the answer, here goes:
Make an override of includes/modules/category_row.php so you don't touch the original.
Then on line 39 swap around the image and the text on either side of the <br/>. It should look like this:
Now your labels will appear on top of the pictures.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) . '">' . $categories->fields['categories_name'] . '<br />' . zen_image(DIR_WS_IMAGES . $categories->fields['categories_image'], $categories->fields['categories_name'], SUBCATEGORY_IMAGE_WIDTH, SUBCATEGORY_IMAGE_HEIGHT) . '</a>');
Possum.