Page 1 of 2 12 LastLast
Results 1 to 10 of 357

Hybrid View

  1. #1
    Join Date
    Sep 2005
    Location
    Waikato, New Zealand
    Posts
    1,539
    Plugin Contributions
    3

    Default Re: Pure CSS Mega Menu

    OK, ignore my post, as soon as i posted and went back i saw my error, i was editing the wrong file

    All i had to do was change this function in my cloned categories_ul_generator.php which I had called categories_ul_generator_bb.php, by adding the line in red to limit it to only my selected category and its kids

    function buildTree($submenu=false)
    {[color=red]$root_category_id = 113;[color/]
    return $this->buildBranch($this->root_category_id, '', $submenu);
    }


    Quote Originally Posted by nigelt74 View Post
    I have the megamenu running nicely as part of one of your templates.

    What I would like to do is keep the shop drop down menu as is

    take one specific category (its a top level category) and place it on the menu bar by itself and have its child categories drop down from it as well, is this possble?

    I have cloned the categories_ul_generator.php file, and tried editing the sql query but i just seem to break it.

    any ideas or pointers, I realise this is probably out of the scope of this thread, but I thought I'd ask
    Webzings Design
    Semi retired from Web Design

  2. #2
    Join Date
    Oct 2007
    Location
    Emporia, Kansas
    Posts
    1,762
    Plugin Contributions
    0

    Default Re: Pure CSS Mega Menu

    I was wanting to add the captcha that appears in our contact box to the drop down menu's box. Is there a way to do so. I tried adding the information for the captcha but only got a blank space...lol needless to say i goofed somewhere.


    I have for now just left the contact us link only to have the "children" with spam and loads of time on their hands to use that area.

    The captcha is the one from here, Captcha Anti-Robot Registration

  3. #3
    Join Date
    Oct 2007
    Location
    Emporia, Kansas
    Posts
    1,762
    Plugin Contributions
    0

    Default Re: Pure CSS Mega Menu

    Quote Originally Posted by nigelt74 View Post
    OK, ignore my post, as soon as i posted and went back i saw my error, i was editing the wrong file

    All i had to do was change this function in my cloned categories_ul_generator.php which I had called categories_ul_generator_bb.php, by adding the line in red to limit it to only my selected category and its kids

    function buildTree($submenu=false)
    {[color=red]$root_category_id = 113;[color/]
    return $this->buildBranch($this->root_category_id, '', $submenu);
    }
    This is great to know and would love to see it in action

    on another note I am a curious kitty and went to Sweet Brucies link...Is the main page supposed to look like that or is it still a work in progress site?

  4. #4
    Join Date
    Sep 2005
    Location
    Waikato, New Zealand
    Posts
    1,539
    Plugin Contributions
    3

    Default Re: Pure CSS Mega Menu

    Quote Originally Posted by DarkAngel View Post
    This is great to know and would love to see it in action

    on another note I am a curious kitty and went to Sweet Brucies link...Is the main page supposed to look like that or is it still a work in progress site?
    Cheers,regarding sweet Brucies, client must have made a booboo, fixed now, PMed you a link to see the code above in action
    Webzings Design
    Semi retired from Web Design

  5. #5
    Join Date
    Jul 2009
    Location
    picaflor-azul.com
    Posts
    6,928
    Plugin Contributions
    45

    Default Re: Pure CSS Mega Menu

    Quote Originally Posted by nigelt74 View Post
    OK, ignore my post, as soon as i posted and went back i saw my error, i was editing the wrong file

    All i had to do was change this function in my cloned categories_ul_generator.php which I had called categories_ul_generator_bb.php, by adding the line in red to limit it to only my selected category and its kids

    function buildTree($submenu=false)
    {[color=red]$root_category_id = 113;[color/]
    return $this->buildBranch($this->root_category_id, '', $submenu);
    }

    I am happy that you figured it out and posted your solution.

    Thanks,

    Anne

  6. #6
    Join Date
    Jan 2007
    Location
    Whitstable - UK
    Posts
    48
    Plugin Contributions
    0

    Default Re: Pure CSS Mega Menu

    Quote Originally Posted by nigelt74 View Post
    OK, ignore my post, as soon as i posted and went back i saw my error, i was editing the wrong file

    All i had to do was change this function in my cloned categories_ul_generator.php which I had called categories_ul_generator_bb.php, by adding the line in red to limit it to only my selected category and its kids

    function buildTree($submenu=false)
    {[color=red]$root_category_id = 113;[color/]
    return $this->buildBranch($this->root_category_id, '', $submenu);
    }
    Hi Nigel

    I am attempting to achieve a split categories menu and was interested in how you achieved this. I cannot find this query in the categories_ul_generator.php, and wondered whether you could either post the whole revised categories_ul_generator.php file or alternatively message me. Thank you

    WDK

  7. #7
    Join Date
    Oct 2007
    Location
    Emporia, Kansas
    Posts
    1,762
    Plugin Contributions
    0

    Default Re: Pure CSS Mega Menu

    I am attempting to add little arrow images to the categories that have subs but, no matter where in the stylesheet_mega_menu.css I place the code I either get nothing, one arrow midway down lists, each and every category regardless of there being a sub or not or on every single main category of the menu and lists.

    I have tried to add this:

    background: #222 url(../images/arrows/arrow32.png;

    I have tried adding it to the:
    /*bof 2 levels drop down*/
    /*second-level lists*/
    .mega-menu .levels li:hover
    .mega-menu .levels li ul ul

    Could someone please let me know if there should be a different file to add it to.

  8. #8
    Join Date
    Jul 2009
    Location
    picaflor-azul.com
    Posts
    6,928
    Plugin Contributions
    45

    Default Re: Pure CSS Mega Menu

    Quote Originally Posted by DarkAngel View Post
    I am attempting to add little arrow images to the categories that have subs but, no matter where in the stylesheet_mega_menu.css I place the code I either get nothing, one arrow midway down lists, each and every category regardless of there being a sub or not or on every single main category of the menu and lists.

    I have tried to add this:

    background: #222 url(../images/arrows/arrow32.png;

    I have tried adding it to the:
    /*bof 2 levels drop down*/
    /*second-level lists*/
    .mega-menu .levels li:hover
    .mega-menu .levels li ul ul

    Could someone please let me know if there should be a different file to add it to.
    If you post a link to the site I can take a look.

    Thanks,

    Anne

  9. #9
    Join Date
    Oct 2007
    Location
    Emporia, Kansas
    Posts
    1,762
    Plugin Contributions
    0

    Default Re: Pure CSS Mega Menu

    Quote Originally Posted by picaflor-azul View Post
    If you post a link to the site I can take a look.

    Thanks,

    Anne
    test store: http://fantaisesrealm.com/market2

    but you won't see anything there indicating arrows because I removed the coding.
    Last edited by DarkAngel; 6 Feb 2013 at 06:00 PM. Reason: submitted wrong url

  10. #10
    Join Date
    Jul 2009
    Location
    picaflor-azul.com
    Posts
    6,928
    Plugin Contributions
    45

    Default Re: Pure CSS Mega Menu

    Quote Originally Posted by DarkAngel View Post
    test store: http://fantaisesrealm.com/market2

    but you won't see anything there indicating arrows because I removed the coding.
    Add your background image to:

    .mega-menu li.submenu

    Thanks,

    Anne

 

 
Page 1 of 2 12 LastLast

Similar Threads

  1. Help with Mega Menu css customization
    By swdynamic in forum Templates, Stylesheets, Page Layout
    Replies: 1
    Last Post: 17 Jul 2013, 01:21 AM
  2. v139h Mega Menu Mess
    By traytray in forum Templates, Stylesheets, Page Layout
    Replies: 1
    Last Post: 20 Nov 2012, 07:58 PM
  3. v150 Mega Menu assistance
    By Fancyfrills in forum Templates, Stylesheets, Page Layout
    Replies: 18
    Last Post: 24 Aug 2012, 06:16 PM
  4. Horizontal Drop Menu sort order of mega-menu
    By familynow in forum All Other Contributions/Addons
    Replies: 3
    Last Post: 19 Oct 2011, 04:39 PM

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