Page 23 of 76 FirstFirst ... 1321222324253373 ... LastLast
Results 221 to 230 of 754
  1. #221
    Join Date
    Jan 2006
    Posts
    61
    Plugin Contributions
    0

    Idea or Suggestion Re: Support for CSS Flyout Menu

    Quote Originally Posted by ckosloff View Post
    Where are you checking z-index?
    You have to look in stylesheet_categories_menu.css
    div#nav-cat li {
    background-image: url(../images/b1.gif);
    background-repeat: no-repeat;
    position: relative;
    list-style: none;
    margin: 0;
    z-index: 20;
    height: 20px;
    width: 150px;
    /* change it to whatever space you want to put space between buttons*/}
    /* <---this line may help or hinder IE menu shifting issues */
    div#nav-cat li li {
    margin: 0;
    /* this overrides the margin-top in the declaration above */
    }
    Once this is fixed I'll invoice you with the details of my bank account.
    Yes, I'm looking on both style sheets ( stylesheet.css & stylesheet_categories_menu.css ) I just wanted to make sure the that nothing else was conflicting with the menu that's why I pointed out the the navColumnOne and centerColumn.

    I have taken the code above without success.
    Here's my stylesheet_categories_menu.css

    body { behavior: url(includes/csshover.htc);} /* WinIE behavior call */
    div#nav-cat {
    width: 230px;
    background-color: #fff;
    font-weight:normal;
    margin-top: 2px;
    margin-right: 0px;
    margin-bottom: 2px;
    margin-left: 0px;
    padding: 0px;
    border: 0px dotted #FF0000;
    }
    div#nav-cat ul {
    margin: 0px;
    padding: 0;
    width: 230px;
    z-index: 500;
    /* border: 1px solid #AAA;*/}

    div#nav-cat ul.level2 {background-color: #e8effe;}
    div#nav-cat ul.level3 {background-color: #e8effe;}
    div#nav-cat ul.level4 {background-color: #e8effe;}
    div#nav-cat ul.level5 {background-color: #e8effe;}
    div#nav-cat ul.level6 {background-color: #e8effe;}

    div#nav-cat li {
    z-index: 500;
    position: relative;
    list-style: none;
    margin: 0;
    margin-top: 2px; /* <---this line may help or hinder IE menu shifting issues */
    border-bottom-width: 1px;
    border-bottom-style: dotted;
    border-bottom-color: #CCC;
    height: 20px;
    }
    div#nav-cat li li {
    margin: 0px; /* this overrides the margin-top in the declaration above */
    }
    div#nav-cat li:hover {
    background-color: #e8effe;
    }
    div#nav-cat li.submenu {}
    div#nav-cat li.submenu:hover {background-color: #e8effe;}
    div#nav-cat li a {display: block; padding: 0.25em 0 0.25em 0em;
    text-decoration: none; width: 230px; color: #000;}


    /*border-left: 0.5em solid #BBB;}
    div#nav li a:hover {border-left-color: red;}*/
    div#nav-cat>ul a {width: auto;color:#000000}
    div#nav-cat ul ul {position: absolute; top: 0; left: 230px; display: none; z-index: 500;}
    div#nav-cat ul.level1 li.submenu:hover ul.level2,
    div#nav-cat ul.level2 li.submenu:hover ul.level3,
    div#nav-cat ul.level3 li.submenu:hover ul.level4,
    div#nav-cat ul.level4 li.submenu:hover ul.level5,
    div#nav-cat ul.level5 li.submenu:hover ul.level6 {
    position: absolute;
    display:block;
    background-color: #e8effe;
    margin: 0px;
    z-index: 500;
    border: 0px dotted #FF0000;
    padding-top: 0.25em;
    padding-right: 0;
    padding-bottom: 0.25em;
    padding-left: 0em;
    }

    div#nav-cat ul.level2 {
    padding: 0;
    width: 150px;
    border: none;
    }

    I can't even focus on my screen anymore, need to rest... :)

    Thanks

  2. #222
    Join Date
    Jan 2006
    Posts
    61
    Plugin Contributions
    0

    Default Re: Support for CSS Flyout Menu

    Quote Originally Posted by issy View Post
    Yes, I'm looking on both style sheets ( stylesheet.css & stylesheet_categories_menu.css ) I just wanted to make sure the that nothing else was conflicting with the menu that's why I pointed out the the navColumnOne and centerColumn.

    I have taken the code above without success.

    I can't even focus on my screen anymore, need to rest... :)

    Thanks
    I've resolved this issue, the problem was that I had overflow: hidden; in the 2 following divs, I just removed that and it all work as it should:)

    #navColumnOne {
    overflow: hidden;
    }

    .columnLeft {
    margin-right: 15px;
    margin-left: 2em;
    border: 0px dotted #FF0000;
    overflow: hidden;
    }

    Thank you

  3. #223
    Join Date
    Feb 2007
    Location
    South Florida, USA
    Posts
    1,372
    Plugin Contributions
    4

    Default Re: Support for CSS Flyout Menu

    Quote Originally Posted by issy View Post
    I've resolved this issue, the problem was that I had overflow: hidden; in the 2 following divs...
    Thanks for posting the error and the fix.

  4. #224
    Join Date
    Jan 2009
    Posts
    2,123
    Plugin Contributions
    0

    Default Re: Support for CSS Flyout Menu

    Hi,

    Does anyone know how to change the fonts on the main title bar from ALL CAPS to Lowercase?

    Probably simple but been hunting for the code for ages and can't seem to find anything for it at all

  5. #225
    Join Date
    Feb 2007
    Location
    South Florida, USA
    Posts
    1,372
    Plugin Contributions
    4

    Default Re: Support for CSS Flyout Menu

    Quote Originally Posted by limelites View Post
    Hi,
    Does anyone know how to change the fonts on the main title bar from ALL CAPS to Lowercase?
    What do you mean by title bar?
    If you mean the catalog font it is in lowercase already.
    The rest is a matter of style.
    h3 #categoriescssHeading {text-transform:lowercase;}
    or uppercase, because it is in lower already.

  6. #226
    Join Date
    Jan 2009
    Posts
    2,123
    Plugin Contributions
    0

    Default Re: Support for CSS Flyout Menu

    Hi, yes it's in lowercase now, figured it out before you had a chance to respond :-)

    Love this mod, only one tiny thing I'd like to customise now would be a time lag. Is there any way to programme a delay into the flyout menu so that it takes a split second before flying out?

    That way, when someone moves their mouse across the screen past the menu, it wouldn't fly out straight away?

  7. #227
    Join Date
    Feb 2007
    Location
    South Florida, USA
    Posts
    1,372
    Plugin Contributions
    4

    Default Re: Support for CSS Flyout Menu

    Quote Originally Posted by limelites View Post
    Is there any way to programme a delay into the flyout menu?
    That's a philosophical question.
    It's not impossible in principle, however you would need custom programming for that, which is not the scope of this support thread.

  8. #228
    Join Date
    Jan 2009
    Posts
    2,123
    Plugin Contributions
    0

    Default Re: Support for CSS Flyout Menu

    Does anyone know if it's possible to add the little (4) product count numbers at the end of the drop down category items as in the nav menu at the side?

  9. #229
    Join Date
    Jan 2009
    Posts
    2,123
    Plugin Contributions
    0

    Default Re: Support for CSS Flyout Menu

    One more question about this mod.... Is it possible to remove the "Categories" menu button and replace it completely with the "Search" sub menu item which is by default under the home button?

    I don't see the point in having a categories menu at the top when we already have a nav menu to the side. Moreover, I really like the advanced search page that, "Search" goes to!

  10. #230
    Join Date
    Jan 2009
    Posts
    2,123
    Plugin Contributions
    0

    Default Re: Support for CSS Flyout Menu

    I am assuming it's something to do with tpl_drop_menu.php but does anyone know exactly how to do this?

 

 
Page 23 of 76 FirstFirst ... 1321222324253373 ... 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