Page 55 of 76 FirstFirst ... 545535455565765 ... LastLast
Results 541 to 550 of 754
  1. #541
    Join Date
    Aug 2009
    Location
    Westland, Michigan
    Posts
    106
    Plugin Contributions
    0

    Default Re: Support for CSS Flyout Menu

    Quote Originally Posted by DBB1 View Post
    Nope, but that does the trick... Thank you.

    Perhaps that little tidbit needs to be included in the readme file that comes with the contribution.

    It simply says "Just unzip, install the 3 files included.....enjoy."

    The instructions should probably further state that the CSS file still needs to be edited to control the menu layout, that there are no Admin controls. Stating "now, it's much easier to customize your own menu colors without having to know css" is a tad misleading perhaps.

    I understand that the contribution has been around forever, but the instructions seem to assume the reader is a long-time user.

    I'll contact the contributor and make these suggestions, but in the meantime, maybe this post will help someone new to the flyout menu.

    Thanks again for the help!
    -DBB1

    I totally agree. Thankfully I finally found this message. With out this thread I was totally lost. I did not know if I installed this correctly because I did not know where to look to check it out.
    Mark
    "I shoot an arrow into the air, where it lands I do not care: I get my arrows wholesale!” Curly Howard

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

    Default Re: Support for CSS Flyout Menu

    Point taken.........notes, too. Better, and clearer instructions will be included in the next releases' "readme" file. Hopefully, that will be in a couple of weeks.

    Thank you for your feedback.

    The readers of this thread could, if they would, start giving me a "wishlist" (if you will) of what they would like to see in the next release.

    Such as, do you, as the users of this menu, want:
    Full background images?
    Just little arrows on items with sub-items?
    Or no images at all?

    Would you like it to be multi-colored (color-mapped) the way it is now, or would you like it to just be nice-looking "out of the box"?

    I know the biggest thing that has haunted this menu is it's lack of support in IE6. But as people are finally starting to catch up and the number of IE6 users are dropping more every day, that's not going to happen. Even FaceBook and Google has dropped IE 6 support. So internet users are soon to have NO choice to upgrade, whether they want to or not.

    What WILL happen is the css_hover.htc file will be taken out, and the call to it in the stylesheet will be taken out so this thing will validate.

    Everyone take a vote and let me know what you'd like to see.

    Thanks for reading,
    Robert
    Teach them to shop and they will shop today;
    Teach them to Zen and they will OWN a shop tomorrow!

  3. #543
    Join Date
    Nov 2009
    Posts
    44
    Plugin Contributions
    0

    Default Re: Support for CSS Flyout Menu

    Hi GetEmFast,

    first tnx for this great mod)

    i have a litle problem with new Chrome. In older version everythink looked good but now when ... sorry hard to discribe this problem but if u look at my site and hover above cathegories you'll see that flyout comes under my slideshow description.

    How/where can i set so flyout will be always on frontend and not behind other things?

    thanks in advance

  4. #544
    Join Date
    Nov 2008
    Posts
    20
    Plugin Contributions
    0

    Default Re: Support for CSS Flyout Menu

    Quote Originally Posted by rapro View Post
    Hi GetEmFast,

    first tnx for this great mod)

    i have a litle problem with new Chrome. In older version everythink looked good but now when ... sorry hard to discribe this problem but if u look at my site and hover above cathegories you'll see that flyout comes under my slideshow description.

    How/where can i set so flyout will be always on frontend and not behind other things?

    thanks in advance

    make sure your menu has a z-index higher than your slideshow and it should work.

    http://www.w3schools.com/css/pr_pos_z-index.asp

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

    Default Re: Support for CSS Flyout Menu

    limousin is correct. Right now in:

    Code:
    div#nav-cat li
    you have a z-index: 1; Set that to z-index: 1000; and you'll be good.
    Teach them to shop and they will shop today;
    Teach them to Zen and they will OWN a shop tomorrow!

  6. #546
    Join Date
    Nov 2008
    Posts
    20
    Plugin Contributions
    0

    Default Re: Support for CSS Flyout Menu

    Quote Originally Posted by Get Em Fast View Post
    limousin is correct. Right now in:

    Code:
    div#nav-cat li
    you have a z-index: 1; Set that to z-index: 1000; and you'll be good.
    just to add, if 1000 doesn't do the trick, make it higher as 1000 didn't work for me.

  7. #547
    Join Date
    Nov 2009
    Posts
    44
    Plugin Contributions
    0

    Default Re: Support for CSS Flyout Menu

    Yep it was z index, thanks guys.

  8. #548
    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 limousin View Post
    just to add, if 1000 doesn't do the trick, make it higher as 1000 didn't work for me.
    Yea, it just depends on what the z-index is on other things on your site. As rapro's highest z-index setting with his image slider was 999, then 1000 with the menu will work fine. I also, tested this out on rapros' site before I posted, so I would know just what setting he would need.
    Last edited by Get Em Fast; 29 Sep 2010 at 04:19 AM.
    Teach them to shop and they will shop today;
    Teach them to Zen and they will OWN a shop tomorrow!

  9. #549
    Join Date
    Jan 2010
    Posts
    124
    Plugin Contributions
    0

    Default Re: Support for CSS Flyout Menu

    I'm not sure if this is heright area to post but I'm trying to get the CSS drop down (dynamic) to only link to those categories that actually have products in them. I was looking at a way to do it by doing a query on the product_to_categories table using a count greater than 0 to tell it to have no link. My php isn't very good (newbie) and I'm sure it isn't too complicated. I did find the area in the code creating the link just not sure how to do this. Any ideas?
    PHP Code:
    if ($level == 0) {
                    
    $result .= $this->root_start_string;
                  }
                  
                  
    $result .= str_repeat($this->spacer_string$this->spacer_multiplier $level) . '<a href="' zen_href_link(FILENAME_DEFAULT'cPath=' $category_link) . '">';
                  
    $result .= $category['name'];
                  
    $result .= '</a>'

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

    Default Re: Support for CSS Flyout Menu

    Paul.........nope.......wrong menu for this thread, but if you don't have products in those categories, you can just disable the Categories and the links will be hidden.

    Go to Admin>Catelog>Categories/Products and the first page you see there will be Categories/Products - Top. Now, see the little green boxes on the right?........click on one of those that you don't have products in, then on the next page it brings up, click the "Update" button. That will bring you back to the Categories/Prodcuts - Top, but now you will see your box is red, and that category is gone from your menu.

    Hope this helps.
    Teach them to shop and they will shop today;
    Teach them to Zen and they will OWN a shop tomorrow!

 

 
Page 55 of 76 FirstFirst ... 545535455565765 ... 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