Re: Support for CSS Flyout Menu
Quote:
Originally Posted by
ckosloff
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. :yuck:
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
Re: Support for CSS Flyout Menu
Quote:
Originally Posted by
issy
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
Re: Support for CSS Flyout Menu
Quote:
Originally Posted by
issy
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.
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 :frusty:
Re: Support for CSS Flyout Menu
Quote:
Originally Posted by
limelites
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.
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?
Re: Support for CSS Flyout Menu
Quote:
Originally Posted by
limelites
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.
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?
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!
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?