Sure, its possible, though I don't know how easy. What I would do is give the first and last menu item its own css style, maybe like this:
In includes/templates/YOUR_TEMPLATE/common/tpl_drop_menu.php, change this:
<li class="submenu"><a href="<?php echo zen_href_link(FILENAME_DEFAULT); ?>"><?php echo HEADER_TITLE_CATALOG; ?></a>
to this:
<li class="submenu"
id="leftCap"><a href="<?php echo zen_href_link(FILENAME_DEFAULT); ?>"><?php echo HEADER_TITLE_CATALOG; ?></a>
and then change the last link:
<li class="submenu"
id="rightCap"><a class="noLine" href="<?php echo zen_href_link(FILENAME_SHOPPING_CART, '', 'NONSSL'); ?>"><?php echo HEADER_TITLE_CART_CONTENTS; ?></a>
<ul class="level2">
<li><a href="<?php echo zen_href_link(FILENAME_CHECKOUT_SHIPPING, '', 'SSL'); ?>"><?php echo HEADER_TITLE_CHECKOUT; ?></a></li>
</ul>
</li>
<?php } else { ?>
<li
id="rightCap"><a class="noLine" href="<?php echo zen_href_link(FILENAME_SHOPPING_CART, '', 'NONSSL'); ?>"><?php echo HEADER_TITLE_CART_CONTENTS; ?></a></li>
And then in the css, give #leftCap and #rightCap their own background images.
Your menu is still broken into two lines in Firefox... I posted some new css here:
http://www.zen-cart.com/forum/showpo...&postcount=484
which should fix the issue.
Bookmarks