It looks like your template files were modified from older versions of the ResponsiveDesign files. In older versions of the menu JS, the navigation didn't perform consistently because it didn't always account for navigation link padding (such as padding because of the additional arrows -- not displayed in your store, but the class and padding is still added -- that are typically displayed when there is a flyout menu) and one other glitch that I don't recall at the moment but I know it was tweaked. So if I save your cart page to my local computer, and add/switch the code listed below, it works correctly.
Add this code to the bottom, just before the </body> tag.
- Code: Select all
<script type="text/javascript">
ss_jQuery("document").ready(function() {
var menuwidth = ss_jQuery("ul#ShopSite").outerWidth();
ss_jQuery(window).resize(debouncer(function() {menuChange(menuwidth);}));
menuChange(menuwidth);
});
</script>
And switch your custom
ResponsiveDesign-Indigo.js publish file with the default ResponsiveDesign.js publish file:
- Code: Select all
<script type="text/javascript" src="http://www.indigocoffee.com/publish/ResponsiveDesign.js"></script>