change to:Code:div#nav-cat ul ul {position: absolute; top: 0; left: 140px; display: none;}Code:div#nav-cat ul ul {position: absolute; top: 0; left: -140px; display: none;}
change to:Code:div#nav-cat ul ul {position: absolute; top: 0; left: 140px; display: none;}Code:div#nav-cat ul ul {position: absolute; top: 0; left: -140px; display: none;}
.
Zen Cart - putting the dream of business ownership within reach of anyone!
Donate to: DrByte directly or to the Zen Cart team as a whole
Remember: Any code suggestions you see here are merely suggestions. You assume full responsibility for your use of any such suggestions, including any impact ANY alterations you make to your site may have on your PCI compliance.
Furthermore, any advice you see here about PCI matters is merely an opinion, and should not be relied upon as "official". Official PCI information should be obtained from the PCI Security Council directly or from one of their authorized Assessors.
YOU ARE NICE DrByte
totally on zen 1.3.5 and now on 1.3.6, I spent more than 3 fulltime days(because I am very newbie) to solve this problem and I did not want disturb the zen peroples with my questions, and lastly I wanted to abandone it,
its okey now, although there is still no answer to the common question of some other peoples also me about putting the counts of products in flyout , I think there can not be done otherwise there came minimum one answer for it.
thanks again![]()
Displaying Category Counts
/includes/classes/categories_ul_generator.php
approx line 81 replace:with this:Code:$result .= $category['name']; $result .= '</a>';Category count settings in Admin->Config->Layout Settings will still be used to control display.Code:$result .= $category['name']; $catcount = zen_count_products_in_category($category_id); if (SHOW_COUNTS == 'true') { if ((CATEGORIES_COUNT_ZERO == '1' and $catcount == 0) or $catcount >= 1) { $result .= CATEGORIES_COUNT_PREFIX . $catcount . CATEGORIES_COUNT_SUFFIX; } } $result .= '</a>';
.
Zen Cart - putting the dream of business ownership within reach of anyone!
Donate to: DrByte directly or to the Zen Cart team as a whole
Remember: Any code suggestions you see here are merely suggestions. You assume full responsibility for your use of any such suggestions, including any impact ANY alterations you make to your site may have on your PCI compliance.
Furthermore, any advice you see here about PCI matters is merely an opinion, and should not be relied upon as "official". Official PCI information should be obtained from the PCI Security Council directly or from one of their authorized Assessors.