Dear Glenn:
After sending you the PM, I am a little confused myself...But, I am trying to use images for the category names in the Categories - Tabs Menu header via the use of Categories Dressing v2.1.
I currently have Alternative Header v1.1a installed, which places the links for login, shopping cart and my account into the image header rather than on a bar. It also centers the header search box. (I believe it is also supposed to create a tabbed categories menu above the header search box. However, my install just shows the standard Zen Categories - Tabs Menu.
From some of your posts, I believe that I can use Categories Dressing to effect the use of images in place of text for the category names in the Categories - Tabs Menu - by copying the "relevant code" from tpl_categories.php to tpl_header.php (which comes from Alternative Header 1.1a). However, I do not know what the "relevant code" is.
Per your request for code, hopefully the following is meaningful:
The code from Alternative Header v1.1a's ...includes/templates/CUSTOM/common/tpl_header.php, which references categories tabs is as follows:
<!--bof-optional categories tabs navigation display-->
<?php require($template->get_template_dir('tpl_modules_categories_tabs.php',DIR_WS_TEMPLATE, $current_page_base,'templates'). '/tpl_modules_categories_tabs.php'); ?>
<!--eof-optional categories tabs navigation display-->
The code for ...includes/templates/CUSTOM/templates/tpl_modules_categories_tabs.php, which is referenced in tpl_header.php is as follows:
<?php
include(DIR_WS_MODULES . zen_get_module_directory(FILENAME_CATEGORIES_TABS));
?>
<?php if (CATEGORIES_TABS_STATUS == '1' && sizeof($links_list) >= 1) { ?>
<div id="navCatTabsWrapper">
<div id="navCatTabs">
<ul>
<?php for ($i=0, $n=sizeof($links_list); $i<$n; $i++) { ?>
<li><?php echo $links_list[$i];?></li>
<?php } ?>
</ul>
</div>
</div>
<?php } ?>
I hope this is a clearer description of my objectives/issues.
Thanks for your help. . Newbie Linda