Page 57 of 76 FirstFirst ... 747555657585967 ... LastLast
Results 561 to 570 of 754
  1. #561
    Join Date
    Dec 2006
    Location
    Seligman, MO U.S.A.
    Posts
    2,101
    Plugin Contributions
    5

    Default Re: Support for CSS Flyout Menu

    Wow! Super fast work by the Dev Team. It's all good and can be downloaded now.
    Teach them to shop and they will shop today;
    Teach them to Zen and they will OWN a shop tomorrow!

  2. #562
    Join Date
    Oct 2010
    Posts
    91
    Plugin Contributions
    0

    Default Re: Support for CSS Flyout Menu

    Ok I know this mod was originally designed to be 150px wide, it was easy enough to change to 200 px. However it threw the alignment of the sub cat menus off a by....wait for it....50 px. I KNOW I have looked at the entry I need to change about 200 times last night, and I changed one by one all the margins I thought would do it (and then changed them back when they didnt) and even though I came up with some rather interesting effects (and some REALLY odd ones as well). All I want to do is move the sub cat and sub sub cat etc menus over to line up.

    The only other thing I want to change is the categories header image to match the rest, is that in the stylesheet as well??

    http://www.wefoundem.com/index.php

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

    Default Re: Support for CSS Flyout Menu

    @ WeFoundEm..............Yea, looks like you got your copy right before I caught a couple of mistakes I made, and submitted a revised version.......1.3.9b.

    Anyway, looks like you got the width down. Now, to make your second level hover above the rest of the menu. Add a z-index to this block of code making it look like:

    Code:
    #nav-cat ul {
       margin: 0px 0px 0px 0px; 
       padding: 0; 
       width: 200px; 
       background-color: #6495ed;
       z-index: 1000;
    }
    There........now 2nd level is above 1st level and is readable. Now, let's push it over a bit so it don't cover up so much of the 1st level. Change the margin to 200 in this section of code like this:

    Code:
    #nav-cat ul ul }      
       position: absolute; 
       top: 0; 
       left: 200px;
       display: none;
    }
    Now, that makes it flush with the right side of the 1st level. If you want it to overlap just a little, then change that to 190, 180, or something to your liking.

    Now, you wanted to change the Heading, right? You can change this block of code to include your image that I assume you're going to make to match the rest of your sideboxes:

    Code:
    #categoriescssHeading.leftBoxHeading {
       background: #87ceeb; 
       border-bottom: 1px solid #0000ff; 
       margin-bottom: 1px;
    }
    to something like:

    Code:
    #categoriescssHeading.leftBoxHeading {
       background: url(../images/yourimage.gif); 
       margin-bottom: 1px;
    }
    Of course, you'll have to play with the margin and maybe add a padding to get your desired results.


    If you need any more help with this, don't hesitate to ask.
    Teach them to shop and they will shop today;
    Teach them to Zen and they will OWN a shop tomorrow!

  4. #564
    Join Date
    Oct 2010
    Posts
    91
    Plugin Contributions
    0

    Default Re: Support for CSS Flyout Menu

    everything looks perfect except for the white text "categories".
    Where can I delete that one, it is as persistent as my ex-wife lol.

    Thanks again for all the help.

  5. #565
    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 WeFoundEm View Post
    everything looks perfect except for the white text "categories".
    Where can I delete that one, it is as persistent as my ex-wife lol.

    Thanks again for all the help.
    Answered in pm, but posting here as well, so others may benefit from this answer, as well:

    That is controlled by the defines in includes/languages/english/YOUR_TEMPLATE/english.php

    If you have never modified the english.php file, then it would just be in includes/languages/english/english.php

    You will be looking in that file for:
    Code:
    define('BOX_HEADING_CATEGORIES', 'Categories');
    Just change that to:

    Code:
    define('BOX_HEADING_CATEGORIES', '');
    and it will leave the Heading blank, so your image will show without the text showing.
    Teach them to shop and they will shop today;
    Teach them to Zen and they will OWN a shop tomorrow!

  6. #566
    Join Date
    Oct 2010
    Posts
    91
    Plugin Contributions
    0

    Default Re: Support for CSS Flyout Menu

    yep worked like a charm, thanks again.

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

    Default Re: Support for CSS Flyout Menu

    Not a problem. Glad to help.
    Teach them to shop and they will shop today;
    Teach them to Zen and they will OWN a shop tomorrow!

  8. #568
    Join Date
    Apr 2010
    Posts
    43
    Plugin Contributions
    0

    Default Re: Support for CSS Flyout Menu

    Hi,

    Thanks for another great module!

    It works out perfect except on IE6. When I move mouse to a root category, its subcategory does not appear. Seemingly the hover function doesn't work on IE6.
    So is it possible to make a small change to the stylesheet_categories_menu.css file to make it also workable on IE6?

    Thank you for your time and patience in advance!

    Regards,
    Ashely

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

    Default Re: Support for CSS Flyout Menu

    Ashely, did you read the "Readme" file that was included? In the very first paragraph of that file it states:
    support for IE6 HAS BEEN DROPPED...WooHoo! This version has the csshover.htc file taken out, as calling it with the stylesheet caused problems with css validation, and still didn't work with IE6, anyway. So all support for IE6 has been dropped and this versions' css validates with w3c Validation services.

    Do yourself a favor............forget about IE6. It's old news and most of the world has dropped ALL support for it, including Facebook (the worlds leading website at this time), Gmail, Youtube, Digg, Twitter Google, and even Microsoft themselves have dropped support for IE6, so let it die in peace, remembering the "good ole days" when that's all the MS BS we had to deal with.

    If you have any problems with any IE browser version 7 or newer, I'll do my very best to help you find the problem.

    Sorry, but IE6 is dead.
    Robert
    Teach them to shop and they will shop today;
    Teach them to Zen and they will OWN a shop tomorrow!

  10. #570
    Join Date
    May 2010
    Posts
    125
    Plugin Contributions
    0

    Default Re: Support for CSS Flyout Menu

    Love this mod and it works perfectly, would it be possible to do one of the following?
    Install 2 or more instances of the menu to split concepts? assume that if this is possible I could give each its own colour

    If not could I create a new category with its own colour?

    Now I sell books but we need to take on different ranges of products and be able to give them a separate identity.
    Thanks Shane

 

 
Page 57 of 76 FirstFirst ... 747555657585967 ... 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