Page 3 of 9 FirstFirst 12345 ... LastLast
Results 21 to 30 of 86
  1. #21
    Join Date
    Jul 2008
    Location
    Bristol UK
    Posts
    162
    Plugin Contributions
    0

    Default Re: Category Tab Simple Dropdown Menu

    Thanks Andrew

    nearly there!

    please look at www.derekbryant.co.uk/zen

    is there a way to sort out the drop down menu width and placement?

    thanks for your help

    Derek

  2. #22
    Join Date
    Jul 2005
    Location
    Upstate NY
    Posts
    22,010
    Plugin Contributions
    25

    Default Re: Category Tab Simple Dropdown Menu

    Code:
    #navCatTabsDropdown * li ul
    {
    	visibility:hidden;
    	position:absolute;
    	left: 35%;
    	padding: 0.5em;
    	z-index: 100;
    }
    Add a width to this if desired.

  3. #23
    Join Date
    Jul 2008
    Location
    Bristol UK
    Posts
    162
    Plugin Contributions
    0

    Default Re: Category Tab Simple Dropdown Menu

    many thanks Andrew & Glen

    I've added a width statement - www.derekbryant.co.uk/zen

    I actually want to use this on one of my active sites, this is just a trial site for downloads

    many thanks once again for your time

    Derek

  4. #24
    Join Date
    Nov 2008
    Location
    London
    Posts
    94
    Plugin Contributions
    0

    css problem Re: Category Tab Simple Dropdown Menu

    Hello, This mod is great.

    However, I have one small problem... my subcategories are not listing properly. Some of them appear next to the the previous or are randomly aligned right rather than underneath it. It's most likely something fixed with the CSS but I've tried a bunch of stuff and nothing works so far.

    To see exactly what I mean visit www. queenib. com, the most obvious example is beneath the womenswear tab or the lingerie tab as viewed in IE, Firefox and Safari.

    I'm baffled.

  5. #25
    Join Date
    Sep 2007
    Location
    Dublin, Ireland
    Posts
    1,288
    Plugin Contributions
    8

    Default Re: Category Tab Simple Dropdown Menu

    Quote Originally Posted by beep View Post
    Hello, This mod is great.

    However, I have one small problem... my subcategories are not listing properly. Some of them appear next to the the previous or are randomly aligned right rather than underneath it. It's most likely something fixed with the CSS but I've tried a bunch of stuff and nothing works so far.

    To see exactly what I mean visit www. queenib. com, the most obvious example is beneath the womenswear tab or the lingerie tab as viewed in IE, Firefox and Safari.

    I'm baffled.
    It looks like you could be using an old version. Try the version posted here: http://www.omnicia.com/Zencart%20Cat...own%20Menu.zip
    Andrew

    Andrew Moore
    Omnicia Agile Development
    www.omnicia.com

  6. #26
    Join Date
    Jul 2005
    Location
    Upstate NY
    Posts
    22,010
    Plugin Contributions
    25

    Default Re: Category Tab Simple Dropdown Menu

    Did you add the <br /> tags between list items? The stylesheet has all <li> in #navCatTabsDropdown floated left, which negates the usual list-item behavior. You can change that for submenus of the main drop menu with this:
    Code:
    #navCatTabsDropdown li li {float: none;}
    It seems to be clumsy handling of the setup - perhaps the new version fixes that.

  7. #27
    Join Date
    Nov 2008
    Location
    London
    Posts
    94
    Plugin Contributions
    0

    Default Re: Category Tab Simple Dropdown Menu

    Thanks guys! I haven't installed the new version yet but that CSS fixed it right up.

    While I'm here I have another question which I haven't been able to find an answer for yet... Do you know how to show the dropdown for only subcategories and disable the dropdown for products?
    For example under the 'powder room' category.

  8. #28
    Join Date
    Sep 2007
    Location
    Dublin, Ireland
    Posts
    1,288
    Plugin Contributions
    8

    Default Re: Category Tab Simple Dropdown Menu

    Quote Originally Posted by beep View Post
    Thanks guys! I haven't installed the new version yet but that CSS fixed it right up.

    While I'm here I have another question which I haven't been able to find an answer for yet... Do you know how to show the dropdown for only subcategories and disable the dropdown for products?
    For example under the 'powder room' category.
    Comment out or delete the following:

    PHP Code:
            $products_tab_query="SELECT p.`products_id`, pd.`products_name`, pd.`language_id` FROM ".TABLE_PRODUCTS." p, ".TABLE_PRODUCTS_DESCRIPTION." pd WHERE p.`master_categories_id`='".(int)$categories_tab->fields['categories_id']."' AND p.`products_id`=pd.`products_id` AND pd.`language_id`='".(int)$_SESSION['languages_id']."' ORDER BY p.`products_sort_order`;";
            
    $products_tab=$db->Execute($products_tab_query);
            if(
    $products_tab->RecordCount()>0)
            {
                echo 
    '<ul>';
                while (!
    $products_tab->EOF
                {    
                    
    $cPath_new=zen_get_path($categories->fields['categories_id']);
                    
    $cPath_new=str_replace('=0_''='$cPath_new);
                    echo 
    '<li>'.'<a href="'.zen_href_link(zen_get_info_page($products_tab->fields['products_id']),$cPath_new'&products_id=' $products_tab->fields['products_id']) . '">'.$products_tab->fields['products_name'].'</a></li><br />';
                    
    $products_tab->MoveNext();
                }
                echo 
    '</ul>';
            } 
    Andrew

    Andrew Moore
    Omnicia Agile Development
    www.omnicia.com

  9. #29
    Join Date
    Apr 2010
    Posts
    68
    Plugin Contributions
    0

    help question Re: Category Tab Simple Dropdown Menu

    Having issue with drop down in IE7. When you mouseover a category the drop down appears to the right of the selected category and subcategories cannot be chosen.

    Wasn't sure if this was a problem for anyone else. Works fine in IE8.

    Need to find out what needs to be changed to correct the issue.

    Thanks!

  10. #30
    Join Date
    Sep 2007
    Location
    Dublin, Ireland
    Posts
    1,288
    Plugin Contributions
    8

    Default Re: Category Tab Simple Dropdown Menu

    Quote Originally Posted by techiegirl View Post
    Having issue with drop down in IE7. When you mouseover a category the drop down appears to the right of the selected category and subcategories cannot be chosen.

    Wasn't sure if this was a problem for anyone else. Works fine in IE8.

    Need to find out what needs to be changed to correct the issue.

    Thanks!
    hmmm- I need to find a copy of IE7
    Andrew

    Andrew Moore
    Omnicia Agile Development
    www.omnicia.com

 

 
Page 3 of 9 FirstFirst 12345 ... LastLast

Similar Threads

  1. Category Tab Simple Dropdown Menu 1.3.9 Support Thread
    By dbltoe in forum All Other Contributions/Addons
    Replies: 46
    Last Post: 30 Mar 2024, 06:12 PM
  2. v139f Category Tab Simple Dropdwn issue
    By kjharrison in forum Basic Configuration
    Replies: 1
    Last Post: 2 Dec 2012, 10:58 PM
  3. Problem with Sort Order and Category Tab Simple Dropdown Menu Mod
    By dbltoe in forum All Other Contributions/Addons
    Replies: 17
    Last Post: 15 Jun 2011, 07:08 PM
  4. Replies: 1
    Last Post: 12 Mar 2011, 07:18 AM
  5. Category Tab Simple Dropdown menu
    By marshanite in forum All Other Contributions/Addons
    Replies: 8
    Last Post: 16 Mar 2010, 04:56 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg
Zen-Cart, Internet Selling Services, Klamath Falls, OR