That is done with the stylesheet, found in includes/templates/YOUR_TEMPLATE/css/stylesheet.css.
Printable View
If you just want to remove the "Information" section, you can open up includes/templates/YOUR_TEMPLATE/common/tpl_drop_menu.php and remove this whole section:
Code:<li class="submenu"><a href="<?php echo zen_href_link(FILENAME_DEFAULT); ?>"><?php echo HEADER_TITLE_INFORMATION; ?></a>
<ul class="level2">
<li><a href="<?php echo zen_href_link(FILENAME_SHIPPING); ?>"><?php echo HEADER_TITLE_SHIPPING_INFO; ?></a></li>
<li><a href="<?php echo zen_href_link(FILENAME_PRIVACY); ?>"><?php echo HEADER_TITLE_PRIVACY_POLICY; ?></a></li>
<li><a href="<?php echo zen_href_link(FILENAME_CONDITIONS); ?>"><?php echo HEADER_TITLE_CONDITIONS_OF_USE; ?></a></li>
<li><a href="<?php echo zen_href_link(FILENAME_ABOUT_US); ?>"><?php echo HEADER_TITLE_ABOUT_US; ?></a></li>
<?php if (defined('FILENAME_SITE_MAP')) { ?>
<li><a href="<?php echo zen_href_link(FILENAME_SITE_MAP); ?>"><?php echo HEADER_TITLE_SITE_MAP; ?></a></li>
<?php } ?>
<?php if (MODULE_ORDER_TOTAL_GV_STATUS == 'true') { ?>
<li><a href="<?php echo zen_href_link(FILENAME_GV_FAQ, '', 'NONSSL'); ?>"><?php echo HEADER_TITLE_GV_FAQ; ?></a></li>
<?php } ?>
<li><a href="<?php echo zen_href_link(FILENAME_DISCOUNT_COUPON, '', 'NONSSL'); ?>"><?php echo HEADER_TITLE_DISCOUNT_COUPON; ?></a></li>
<?php if (SHOW_NEWSLETTER_UNSUBSCRIBE_LINK == 'true') { ?>
<li><a href="<?php echo zen_href_link(FILENAME_UNSUBSCRIBE, '', 'NONSSL'); ?>"><?php echo HEADER_TITLE_UNSUBSCRIBE; ?></a></li>
<?php } ?>
<?php require(DIR_WS_MODULES . 'sideboxes/' . $template_dir . '/' . 'ezpages_drop_menu.php'); ?>
</ul>
</li>
a)http://peg2u.com/catalogue/index.php...3ab012dd2e72f5
b)http://peg2u.com/catalogue/index.php...index&cPath=14
We would like to show our product list (a) to be the same with (b)
For question 1) our previous post, could we solve the problem if we upload our pix in different folder?
Lastly, how to disable zen cart from showing 'Units in Stock' in product info ?
Thanks
Go to your admin, to "Configuration" and "product Listing". There you can add things you want to show, so that the product listing looks more like the all listing.
Images, yes, a different folder will solve the problem.
Units in stock: go to "Catalog", "Product Types", and edit layout for "Product General" and you can remove it there.
You can also remove it from "Configuration", "All Listing", "New Listing", etc.
First of all i love the template great work :clap:
I got a couple of questions.
1) How do I change the color for the "log yourself in" part for "welcome guest! would you like to log yourself in?" The colors are too close on my site the link is not visible.
2) How do I change the color of the category links on the right hand menu when the cursor is on them (again similar issue as above can't really tell which one is highlighted)
3) In internet explorer ver 6.0 when I goto create an account the form goes all the way to the bottom of the page since the borders don't resize (falls below where the right hand menu ends) In firefox there is no problem though
4)How do I edit the links under the right hand menu? (the links under information in my case)
thanks!
1) You can do something like this:
.greeting a {color:#ff0000;}
Or to change the hover color:
.greeting a:hover {color:#ff0000}
2)a.category-top:hover{color:#ff0000;}
3) I don't think you're using the most recent version of this template; I've made some significant fixes.
4) That depends on what you want to do. In your admin you can disable some of them, with "Configuration", "Define Page Status".
Jade: Yes, this did help. Thank you.
I have been spending a lot of time in the CSS and am getting a better understanding of your design. However, I do not want to use the full width headers but I understand why use chose it...
I have trimmed the CSS some in an effort to better understand it. This has revealed a new issue (entirely mine I'm sure) of a hick-up on page redraw... Page redraws, then jumps left a slight amount.
http://royalindustriesinc.com/store/
Click the company logo and you see what I'm talking about.
I'm sure it's a simple fix, but I am not finding it. Thanks again for the help and awesome design.