Page 60 of 76 FirstFirst ... 1050585960616270 ... LastLast
Results 591 to 600 of 754
  1. #591
    Join Date
    Jul 2005
    Location
    Upstate NY
    Posts
    22,010
    Plugin Contributions
    25

    Default Re: Support for CSS Flyout Menu

    Just missed the edit window... it can be simplified to
    Code:
    #categories ul ul {display: none;}
    #categories li:hover {position: relative;}
    #categories li:hover>ul {display: block; position:absolute; left:130px; top:0; z-index:100; width:140px;}

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

    Default Re: Support for CSS Flyout Menu

    Ya' know, Glen, I've been meaning for quite some time to see if maybe these two could be merged. That would make an absolute great menu..............add a couple lines of jquery to go with it (I've actually got the Horizontal CSS Dropdown Menu working very nicely with jquery, and am about to add a jquery version of it AND this one)........hmmmm........
    But, oh...........I've just been sooooooo busy, lately. Not that I'm complaining, or anything...............
    Teach them to shop and they will shop today;
    Teach them to Zen and they will OWN a shop tomorrow!

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

    Default Re: Support for CSS Flyout Menu

    I was pleasantly surprised to see how simple it was to get the flyout functionality on Cat Dressing. I haven't looked at all of the CSS Flyout Menu code, but I think they have fundamentally different base coding to arrive at some of the same output. I'm not sure how much difference there is in the styling that makes the flyout action, though... probably not much. How much does jquery need to be woven into the PHP to work on something like this? Any at all? Or does it just modify the output once it gets to the user's screen? I may try some CSS3 transitions or something to see if I can get slick effects for modern browsers without adding jquery to the mix.

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

    Default Re: Support for CSS Flyout Menu

    Yea, I kind of wish I had a little more time right now to mess with it, but as of the moment, I'm pretty swamped.

    You know, I haven't even tried the jquery with this menu, yet, but almost everything about this menu and the CSS Dropdown Menu is the same except for the css, so I'm almost sure it would just be a simple matter of dropping the javascript in the tpl_header.php.

    Well, actually.............I just very quickly took a minute to do a test run with it, and it worked just fine. All you have to do is add jquery to your jscript folder, rename it to jscript_jquery.js then drop this in the tpl_header.php:

    Code:
    <script type="text/javascript">
    //script copyright Get Em Fast Web Designs
    $(function () {
            $('#nav-cat .level1 .submenu.submenu').hover(function() {
    $(this).find('ul.level2,.level3 li,.level4 li,.level5 li,.level6 li').stop(true, true).hide(1000);
    $(this).find('ul.level2,.level3 li,.level4 li,.level5 li,.level6 li').stop(true, true).show(1000);
    }, function() {
    $(this).find('ul.level2,.level3 li,.level4 li,.level5 li,.level6 li').stop(true, true).show(1000);
    $(this).find('ul.level2,.level3 li,.level4 li,.level5 li,.level6 li').stop(true, true).hide(1000);
    });});
    </script>
    You can change it to FadIn and FadeOut also, but I think the hide and show looks better.
    Teach them to shop and they will shop today;
    Teach them to Zen and they will OWN a shop tomorrow!

  5. #595
    Join Date
    Jan 2011
    Posts
    53
    Plugin Contributions
    0

    Default Re: Support for CSS Flyout Menu

    i'm new to the zen cart store, and would appreicate it if anyone would share how to remove Important Links Sidebox, iv'e tried to remove it from Admin/tools/Layoutboxescontroler but it doesn't show up there.

    My site is here: BudgetA/C online store

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

    Default Re: Support for CSS Flyout Menu

    This question has nothing to do with the thread topic, and you should post new questions in a new thread (go to the appropriate forum and click "new thread").
    The Important Links sidebox is named ez-pages in the layout controller.

  7. #597
    Join Date
    May 2010
    Posts
    222
    Plugin Contributions
    0

    Default Re: Support for CSS Flyout Menu

    How can I hide this sidebox during the checkout phase?

  8. #598
    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 mretzloff View Post
    How can I hide this sidebox during the checkout phase?
    JUST this one, or all of them on left and/or right columns, during checkout (which is what I'm assuming, as that would seem more feasible)?
    Teach them to shop and they will shop today;
    Teach them to Zen and they will OWN a shop tomorrow!

  9. #599
    Join Date
    May 2010
    Posts
    222
    Plugin Contributions
    0

    Default Re: Support for CSS Flyout Menu

    Quote Originally Posted by Get Em Fast View Post
    JUST this one, or all of them on left and/or right columns, during checkout (which is what I'm assuming, as that would seem more feasible)?
    I already got all of the left column to hide during checkout by adding a conditional statement to column_left.php, but this sideboxes keeps showing up. Is there something I missed?

    Thank you!

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

    Default Re: Support for CSS Flyout Menu

    Well, without seeing the site, I really can't say. Do you have an address for us to visit this site?

    Did you disable the left column as described in the Tutorials/FAQ's?..............something like:

    In includes/templates/YOUR_TEMPLATE/common/tpl_main_page.php

    Code:
    if (in_array($current_page_base,explode(",",'checkout_shipping,checkout_payment,checkout_confirmation,checkout_success')) ) {   
        $flag_disable_left = true;
      }
    Teach them to shop and they will shop today;
    Teach them to Zen and they will OWN a shop tomorrow!

 

 
Page 60 of 76 FirstFirst ... 1050585960616270 ... LastLast

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

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