Ok I figured out the buttons. There was a setting in the admin under layout setting for css buttons instead of the picture buttons. I just set that to off. So all that I have left is fixing the Categories side box title to products. Thank you!!!
Printable View
Ok I figured out the buttons. There was a setting in the admin under layout setting for css buttons instead of the picture buttons. I just set that to off. So all that I have left is fixing the Categories side box title to products. Thank you!!!
Hi!
The Categories will be in a language file. Do a search in your "Tools", "Developer's Tool Kit" for "Categories". You can restrict it to search only language files, and that will tell you right where you need to go.
You can also help your long category name issue by decreasing the padding, you can change #categoriesContent to this;
#categoriesContent {
text-align:left;
padding-left:8px;
}
Thank you for all of the help!!! I have just a few more questions. I was thinking of adding a button to the drop down menu but i wasn't sure what to add to make it work. I know its in the tpl_drop_menu.php. Also I would like to be able to display the model number in the shopping cart. Thank you again for this great template and all of the help!!!
Thank you for the wonderful template.When using IE I get a scripting error coming from /includes/css.hover.htcIs there a fix for this? Thanks in advance,Julie
What kind of button? A seperate actual button image, or just want one of the menu chunks to be clickable. If you explain more what you want it to do, I may be able to help.
As for the model #, I'm not sure about that, I would ask as a separate question in one of the other forum categories.
I was wondering how to add a button to the navigation bar. I wanted to add a button next to the shopping cart button. Also I would like to know how to add like another page like under the information button. I am adding a faq page and would like to add it in either of those two spots which ever one is easier. Thanks for the help.
Great template!;)
I like the colors combination and the layout!:)
Nice looking and easy to use!
Thanks
To add the faq page under the information button, just open up includes/templates/YOUR_TEMPLATE/common/tpl_drop_menu.php
Find the spot where you would like the new link.
Say you want it underneath the unsubscribe link.
Just find this part:
<li><a href="<?php echo zen_href_link(FILENAME_UNSUBSCRIBE, '', 'NONSSL'); ?>"><?php echo HEADER_TITLE_UNSUBSCRIBE; ?></a></li>
and add the link there:
<li><a href="index.php?main_page=faq">Name of link here</a></li>
As for the button, I'm still not positive what you want to do. You want an actual clickable button like with an image? Or you just want to add another item to the drop menu at the end, and have it look just like the rest of the menu?