Page 10 of 36 FirstFirst ... 8910111220 ... LastLast
Results 91 to 100 of 357
  1. #91
    Join Date
    Mar 2009
    Posts
    31
    Plugin Contributions
    0

    Default Re: Pure CSS Mega Menu

    Thanks so much. Never thought of the obvious - Admin..... silly me.

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

    Default Re: Pure CSS Mega Menu

    Quote Originally Posted by beco1979 View Post
    Thanks so much. Never thought of the obvious - Admin..... silly me.
    No problem ;-)

    Thanks,

    Anne

  3. #93
    Join Date
    Jan 2007
    Location
    Los Angeles, California, United States
    Posts
    10,021
    Plugin Contributions
    32

    Default Re: Pure CSS Mega Menu

    Well I hate to come back and ask for help on this again, but I and stumped and I need some help resolving this once and for all.. I made the recommended changes to change my categories dropdown into a two column display. This works fine.. The categories are displayed in two columns..

    However, when you hover over the column on the left, the column on the right "jumps" over to the left. I've run out of ideas to fix this.. Hoping that someone in the comunnity can help me sort out what it is I am missing to fix this once and for all.. (PRETTY PLEASE)

    You can see what I mean here: http://clientlaserdiscvault(dot)overthehillweb(dot)com/ Hover over the "Our Products" link to see the two column category display.. Now hover over the categories in the left column and see how the categories in the right column "jump" to the left..
    My Site - Zen Cart & WordPress integration specialist
    I don't answer support questions via PM. Post add-on support questions in the support thread. The question & the answer will benefit others with similar issues.

  4. #94
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    13,342
    Plugin Contributions
    94

    Default Re: Pure CSS Mega Menu

    Quote Originally Posted by DivaVocals View Post
    Well I hate to come back and ask for help on this again, but I and stumped and I need some help resolving this once and for all.. I made the recommended changes to change my categories dropdown into a two column display. This works fine.. The categories are displayed in two columns..

    However, when you hover over the column on the left, the column on the right "jumps" over to the left. I've run out of ideas to fix this.. Hoping that someone in the comunnity can help me sort out what it is I am missing to fix this once and for all.. (PRETTY PLEASE)

    You can see what I mean here: http://clientlaserdiscvault(dot)overthehillweb(dot)com/ Hover over the "Our Products" link to see the two column category display.. Now hover over the categories in the left column and see how the categories in the right column "jump" to the left..
    You're losing 35px of right-margin on the hover. At line 80, you've got
    Code:
    .mega-menu .level2 li {
        margin-right: 35px;
    }
    and the styling on line 75 sets the margin to 0 on hover. Just set margin: 0 35px 0 0;

  5. #95
    Join Date
    Jan 2007
    Location
    Los Angeles, California, United States
    Posts
    10,021
    Plugin Contributions
    32

    Default Re: Pure CSS Mega Menu

    Quote Originally Posted by lat9 View Post
    You're losing 35px of right-margin on the hover. At line 80, you've got
    Code:
    .mega-menu .level2 li {
        margin-right: 35px;
    }
    and the styling on line 75 sets the margin to 0 on hover. Just set margin: 0 35px 0 0;
    Lat9!!! My hero!!! THANK YOU SOOOOO MUCH!!!!! I have been staring at this so long that it looks like I missed the obvious.. Though I didn't know what the answer was, my gut told me it was in my stylesheet and not in the categories_ul_generator.php (as it had been suggested me was the key to the solution).. So glad I decided to try one more time to ask for help..
    My Site - Zen Cart & WordPress integration specialist
    I don't answer support questions via PM. Post add-on support questions in the support thread. The question & the answer will benefit others with similar issues.

  6. #96
    Join Date
    Jan 2007
    Location
    Los Angeles, California, United States
    Posts
    10,021
    Plugin Contributions
    32

    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
    Code:
        function buildTree($submenu=false)
        {$root_category_id = 113;
            return $this->buildBranch($this->root_category_id, '', $submenu);
        }
    This post caught my attention.. I want to limit the categories shown in the categories dropdown.. How would this code have to be structured if I wanted more than one category.. ie: a list of specific categories versus just a sing category or ALL categories... Would the categories_ul_generator.php require other changes as well??
    Last edited by DivaVocals; 4 Apr 2013 at 07:11 AM.
    My Site - Zen Cart & WordPress integration specialist
    I don't answer support questions via PM. Post add-on support questions in the support thread. The question & the answer will benefit others with similar issues.

  7. #97
    Join Date
    Oct 2008
    Posts
    12
    Plugin Contributions
    0

    Default Re: Pure CSS Mega Menu

    Has anyone managed to get a sidebox into this CSS mega-menu?

    I've been trying to add the advanced search box into a dropdown and if I can get that done, I'd also like to have the shopping cart sidebox in another dropdown.

    Has anyone got any ideas?

    Excellent script by the way, and highly recommended if you haven't tried it.

    Currently in action at www.thefabulousdogcompany.com

    Cheers

    Kristian

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

    Default Re: Pure CSS Mega Menu

    Quote Originally Posted by DivaVocals View Post
    Lat9!!! My hero!!! THANK YOU SOOOOO MUCH!!!!! I have been staring at this so long that it looks like I missed the obvious.. Though I didn't know what the answer was, my gut told me it was in my stylesheet and not in the categories_ul_generator.php (as it had been suggested me was the key to the solution).. So glad I decided to try one more time to ask for help..
    I am happy that you figured it out ;-)

    Thanks,

    Anne

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

    Default Re: Pure CSS Mega Menu

    Has anyone managed to get a sidebox into this CSS mega-menu?
    Editable Centerboxes from Plugins allows standard sideboxes to be used in the center column, and the code that does it may be able to be adapted to work in the mega-menu environment.

    In fact, it might be that you can just install Editable Centerboxes, not use any of the standard box locations, and move or add a simple function call to "middleboxes" in the mega-menu code. The readme for that mod has more info about this.
    Last edited by gjh42; 5 Apr 2013 at 04:01 PM.

  10. #100
    Join Date
    Jan 2007
    Location
    Los Angeles, California, United States
    Posts
    10,021
    Plugin Contributions
    32

    Default Re: Pure CSS Mega Menu

    Quote Originally Posted by gjh42 View Post
    Editable Centerboxes from Plugins allows standard sideboxes to be used in the center column, and the code that does it may be able to be adapted to work in the mega-menu environment.

    In fact, it might be that you can just install Editable Centerboxes, not use any of the standard box locations, and move or add a simple function call to "middleboxes" in the mega-menu code. The readme for that mod has more info about this.
    LOVE the Editable Centerboxes add-on!!

    I love that it adds the same kind of "widgets anywhere" functionality to Zen Cart (similar to WordPress templates).. Opens up the possiblity for so many more flexible layout options in Zen Cart!!!

    Kristian -- you can see the Editable Centerboxes add-on in action on the demo site I posted earlier..
    My Site - Zen Cart & WordPress integration specialist
    I don't answer support questions via PM. Post add-on support questions in the support thread. The question & the answer will benefit others with similar issues.

 

 
Page 10 of 36 FirstFirst ... 8910111220 ... 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

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