We got the old menus working for the Categories. Has anyone used CSS Flyout with sideboxes? Does this work?
[FONT=Palatino Linotype]Contribution Start:[/FONT]
[FONT=Palatino Linotype]SHINE Live Help Sidebox[/FONT]
The old contribution *can* work, its just really buggy. I had issue with categories that didn't have subcategories being first in the drop menu, etc.... certain category scenarios causes problems with the old mod. I have used the older sidebox one without issue on a site or two, I believe.
What do you mean by the "older sidebox one"? Do you mean that you have used the older contribution on a sidebox or there is a contribution for CSS Flyout Sideboxes that you have used? I did not see a contribution for CSS Flyout sideboxes in the download section. I may have overlooked it.
[FONT=Palatino Linotype]Contribution Start:[/FONT]
[FONT=Palatino Linotype]SHINE Live Help Sidebox[/FONT]
It's in the downloads, under sideboxes.
Direct Link:
CSS Flyout Menu
I just installed your menu's and they work great. I also installed the lightbox image add on and it works great also, but the problem is that you menu is over the lightbox image. Does anyone know how to get the menu to be in the background behind the lightbox?
click on the image to see the lightbox image and the problem. This is not the final pic, but you should be able to see the problem.
http://sacedout.com/index.php?main_p...products_id=22
thanks for any help.
CMessa
1. Open up includes/templates/YOUR_TEMPLATE/common/tpl_drop_menu.php and remove the "class="submenu" from top-level items without sub items. So the contact us link would change to this:
<li><a href="<?php echo zen_href_link(FILENAME_CONTACT_US, '', 'NONSSL'); ?>"><?php echo HEADER_TITLE_CONTACT_US; ?></a></li>
2. Add this to the header_menu css file:
div#dropMenu li.submenu li.submenu {background: none;}
OR, you could use the image attached to have arrows pointing right to designate further subcategories, with this css:
div#dropMenu li.submenu li.submenu {background: url(../images/submenu.gif) 95% 50% no-repeat;}
Much better!
The only thing it doesn't seem to work with is the conditional menu items like the following:
Even if there are no items in the cart, the down arrow still displays in the top Shopping Cart link.Code:<li class="submenu"><a href="<?php echo zen_href_link(FILENAME_SHOPPING_CART, '', 'NONSSL'); ?>"><?php echo HEADER_TITLE_CART_CONTENTS; ?></a> <?php if ($_SESSION['cart']->count_contents() != 0) { ?> <ul class="level2"> <li><a href="<?php echo zen_href_link(FILENAME_CHECKOUT_SHIPPING, '', 'SSL'); ?>"><?php echo HEADER_TITLE_CHECKOUT; ?></a></li> </ul> <?php }?> </li>
Other than that, this menu is totally great
Thanks super much![]()