Re: Removing Name under "Section Image"
http://www.hextasy.com/temp/test.jpg
this is the product display page for one of the products i wish to sell, i want to get rid of the text under the bracelet image. when you run the mouse over the text it highlights the image and the text as a link. i just need the image as the link and to get rid of the text, hope this helps explain what i'm raving on about
Re: Removing Name under "Section Image"
I need to see the page live; a screenshot doesn't help in fixing this.
Re: Removing Name under "Section Image"
I was hoping for something better, but this is exactly the same difficulty as the previous question: there is no identifier to be able to address the text independently.
You will need to edit /includes/templates/your_template/templates/tpl_modules_category_icon_display.php
PHP Code:
require(DIR_WS_MODULES . zen_get_module_directory(FILENAME_CATEGORY_ICON_DISPLAY));
?>
<div align="<?php echo $align; ?>" id="categoryIcon" class="categoryIcon"><?php echo '<a href="' . zen_href_link(FILENAME_DEFAULT, 'cPath=' . $_GET['cPath'], 'NONSSL') . '">' . $category_icon_display_image . $category_icon_display_name . '</a>'; ?></div>
Change
$category_icon_display_name . '</a>';
to
'<span class="categoryIconText">' . $category_icon_display_name . '</span></a>';
PHP Code:
require(DIR_WS_MODULES . zen_get_module_directory(FILENAME_CATEGORY_ICON_DISPLAY));
?>
<div align="<?php echo $align; ?>" id="categoryIcon" class="categoryIcon"><?php echo '<a href="' . zen_href_link(FILENAME_DEFAULT, 'cPath=' . $_GET['cPath'], 'NONSSL') . '">' . $category_icon_display_image . '<span class="categoryIconText">' . $category_icon_display_name . '</span></a>'; ?></div>
and add to your stylesheet
Code:
.categoryIconText {display: none;}
Re: Removing Name under "Section Image"
oh that's brilliant Glen! thanks SO much for your help, it's been greatly appreciated.
Re: Removing Name under "Section Image"
Hey this is great and is just what I wanted, However the same problem still exists with the subcategory icons and links so the same question applies how do i remove the subcategory text links?
Thanks
Tony
Re: Removing Name under "Section Image"
Post 7 answers what you asked; if you meant something other than the category listing which shows subcategory images and names, please explain further, with a way to see your site live.