Results 1 to 10 of 754

Hybrid View

  1. #1
    Join Date
    Apr 2009
    Posts
    3
    Plugin Contributions
    0

    Default Re: Support for CSS Flyout Menu

    Can SOMEONE PLEASE HELP ME...

    its very simple but i cant seem to figure it out myself...

    All i need is the submenu beside the categories i dont need the 3rd and 4th and 5th and 6th level

    How can i go about only having a second level?

    Please help my deadline is in a week.

  2. #2
    Join Date
    Feb 2007
    Location
    South Florida, USA
    Posts
    1,374
    Plugin Contributions
    4

    Default Re: Support for CSS Flyout Menu

    Quote Originally Posted by jfreak419 View Post
    its very simple but i cant seem to figure it out myself...
    Don't you understand that this menu reads from the categories in the database?
    If you only have a subcat, then it will only read that one.
    You don't have a problem, only you imagine you do.

  3. #3
    Join Date
    Apr 2009
    Posts
    3
    Plugin Contributions
    0

    Default Re: Support for CSS Flyout Menu

    no see the thing is... i do have 3rd level subcategories but i dont want them to appear i only want the second level of categories to fly out... not the 3rd 4th 5th or 6th level.... so how do i go about doing that?

  4. #4
    Join Date
    Feb 2007
    Location
    South Florida, USA
    Posts
    1,374
    Plugin Contributions
    4

    Default Re: Support for CSS Flyout Menu

    Quote Originally Posted by jfreak419 View Post
    ...not the 3rd 4th 5th or 6th level...
    First time I see a request like this because, what would be the purpose of having subcats if you don't want them to show in the menu?
    There are several solutions to this:
    1) Don't do subcats, just do EZ pages and link to them from the cat description.
    2) Hack the code of the menu, very difficult.
    3) Try hacking the CSS like display: none, but then how would you access the subcats?
    Looks more like a philosophical than a support question.

  5. #5
    Join Date
    Apr 2009
    Posts
    3
    Plugin Contributions
    0

    Default Re: Support for CSS Flyout Menu

    I think your making it more complicated then it has to be... All i need to do is make the 3rd level and up not display...

  6. #6
    Join Date
    Dec 2006
    Location
    Seligman, MO U.S.A.
    Posts
    2,101
    Plugin Contributions
    5

    Default Re: Support for CSS Flyout Menu

    Quote Originally Posted by jfreak419 View Post
    All i need to do is make the 3rd level and up not display...
    jfreak, Try this....find this section of code in you stylesheet_categories_menu.css:

    Code:
    div#nav-cat ul.level1 li.submenu:hover ul.level2, 
    div#nav-cat ul.level2 li.submenu:hover ul.level3,
    div#nav-cat ul.level3 li.submenu:hover ul.level4,
    div#nav-cat ul.level4 li.submenu:hover ul.level5,
    div#nav-cat ul.level5 li.submenu:hover ul.level6 {
            display:block; 
            background-color: #228B22;
    }
    And change it to this:

    Code:
    div#nav-cat ul.level1 li.submenu:hover ul.level2,
    div#nav-cat ul.level2 li.submenu:hover ul.level3
    {
            display:block; 
            background-color: #228B22;
    } 
    
    div#nav-cat ul.level3 li.submenu:hover ul.level4,
    div#nav-cat ul.level4 li.submenu:hover ul.level5,
    div#nav-cat ul.level5 li.submenu:hover ul.level6 {
            display:none; 
    }
    Then everything beyond the 3rd level will be hidden.


    And this will hide everything beyond the second level:

    Code:
    div#nav-cat ul.level1 li.submenu:hover ul.level2
    
    {
            display:block; 
            background-color: #228B22;
    } 
    div#nav-cat ul.level2 li.submenu:hover ul.level3,
    div#nav-cat ul.level3 li.submenu:hover ul.level4,
    div#nav-cat ul.level4 li.submenu:hover ul.level5,
    div#nav-cat ul.level5 li.submenu:hover ul.level6 {
            display:none; 
    }

    Hope this helps.
    Last edited by Get Em Fast; 7 May 2009 at 07:46 PM.
    Teach them to shop and they will shop today;
    Teach them to Zen and they will OWN a shop tomorrow!

  7. #7
    Join Date
    Feb 2007
    Location
    South Florida, USA
    Posts
    1,374
    Plugin Contributions
    4

    Default Re: Support for CSS Flyout Menu

    Get 'em Fast is kinder than me with these requests.
    He's the good cop.

 

 

Similar Threads

  1. v151 How to uninstall CSS Horizontal Drop Down Menu (CSS Flyout Header 1.5)
    By cmike in forum Templates, Stylesheets, Page Layout
    Replies: 3
    Last Post: 15 Feb 2014, 07:39 AM
  2. Flyout Menu CSS For My Template.
    By NathanLee0921 in forum Templates, Stylesheets, Page Layout
    Replies: 1
    Last Post: 26 May 2010, 01:24 AM
  3. Extra text or image inbetween categories for css flyout menu?
    By arniesbarmyarmy in forum Addon Sideboxes
    Replies: 0
    Last Post: 23 Nov 2009, 10:30 AM
  4. css flyout menu (for side nav)
    By gsdcypher in forum General Questions
    Replies: 0
    Last Post: 3 Dec 2007, 12:10 AM

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