
Originally Posted by
breezyr
I really like this template, thank you.
I have a question, I would like to add another column to the drop down menu called Links. How would I do that? I am a real newb to zen cart so pardon my ignorance.
Thanks
Well, that would take some doing. :-)
You could add the links manually in includes/templates/apple_zen/common/tpl_drop_menu.php, something like this:
Code:
<li class="submenu">Links
<ul class="level2">
<li><a href="sub_link_here.htm">Sub Link 1</a></li>
<li><a href="sub_link2_here.htm">Sub Link 2</a></li>
<li><a href="sub_link3_here.htm">Sub Link 3</a></li>
<li><a href="sub_link4_here.htm">Sub Link 4</a></li>
</ul>
</li>