Quote Originally Posted by MeltDown View Post
I've created an index.html that is to be the main page for this Zen/Apple Zen site. Now the Home link in the drop-down menu needs to be updated. I tried changing this:
PHP Code:
<li class="submenu"><a href="<?php echo zen_href_link(FILENAME_DEFAULT); ?>"><?php echo HEADER_TITLE_CATALOG?></a>
to This

PHP Code:
            <li class="submenu"><li><a href="http://www.MyStore.com">Home</a></li
But broke my Zen cart. Can you please tell me the proper procedure? Thanks!
You have two <li>'s. Remove the second one, and then remove the ending </li> (that <li class="submenu" is closed later in the file):

Code:
<li class="submenu"><li><a href="http://www.MyStore.com">Home</a></li>