
Originally Posted by
nrupesh
Hi Jade,
My main issue is the categories that show up on top of the drop down menus, I got a lot of categories and I would rather turn that feature off... your posts mention that I need to turn off
Categories-Tabs Menu ON/OFF , but any changes there dont reflect the display of categories (
www.pavs.biz/showcase )... any other way to turn it off?
That's the way to turn it off, and I just tested it, so there must be a problem with the code that tells it to check and see if its set to on or off. First, double check that its set to "0", and if so, then open up includes/templates/YOUR_TEMPLATE/templates/tpl_modules_categories_tabs.php
and make sure it looks like this:
Code:
<?php
/**
* Module Template - categories_tabs
*
* Template stub used to display categories-tabs output
*
* @package templateSystem
* @copyright Copyright 2003-2005 Zen Cart Development Team
* @copyright Portions Copyright 2003 osCommerce
* @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
* @version $Id: tpl_modules_categories_tabs.php 3395 2006-04-08 21:13:00Z ajeh $
*/
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 } ?>

Originally Posted by
nrupesh
Other small issue was the gap below the logo...
That is the ezpages section. Make sure that is off in the admin:
"Configuration", "Ezpages Settings", "EZ-Pages Display Status - HeaderBar".

Originally Posted by
nrupesh
and any idea on how CENTER the categories to the middle horizontally?
Not sure what you mean by the above.

Originally Posted by
nrupesh
& to put icons next to categories in drop down menu, like small arrowheads.
If you open up includes/templates/YOUR_TEMPLATE/css/stylesheet_header_menu.css, there is a section for little arrowheads for items with submenus already, you just need to uncomment that section:
Code:
/*div#dropMenu li.submenu li.submenu {background: url(../images/submenu.gif) 95% 50% no-repeat;} */
Hope that helps!
Bookmarks