Nice Menu glitch
Jonny P - April 27, 2006 - 14:05
| Project: | Nice Menus |
| Version: | 6.x-2.x-dev |
| Component: | Code |
| Category: | bug report |
| Priority: | minor |
| Assigned: | Unassigned |
| Status: | closed |
Jump to:
Description
Hey there, I really like the nice menu module, only problem is that posts that are located behind my menu always seem to take priority over the menu items... so everytime you mouse through the menu, you get kicked out of it if there is a post title underneath! Kind of annoying to say the least.
Check it out at www.knowpei.com
I would really love this menu to be 100% functional, cause it does help clean things up a lot.
TIA for any help
Jon

#1
Does anyone else encounter this problem... sorry I took the nice menus off the page there, but if you read my above post, you'll probably know what I mean.
I really would like to fix this problem so that I can use the nice menus again.
Thanks
Jon
#2
yes same problem here... the view or edit botton is taking a priority over this... any possible solution?
#3
Dude, I am so anxious to find out how to get this nice_menu working! Please let me know if you find out anything, and I'll do the same for you.
Thanks
Jon
#4
yup working on it... no luck yet. not that good at javascript though :(
#5
Had the same problem, after not recieving much help reading all the post from the other forums I figured this out on my own (using one small line from another post). In the nice_menues.css file under "ul.nice-menu, ul.nice-menu ul{" add in "position: relative;". In other words just add the one line as follows:
ul.nice-menu,
ul.nice-menu ul{
list-style: none;
padding: 0;
margin: 0;
border-top: 1px solid #ccc;
z-index: 5;
}
CHANGED TO
ul.nice-menu,
ul.nice-menu ul{
position: relative;
list-style: none;
padding: 0;
margin: 0;
border-top: 1px solid #ccc;
z-index: 5;
}
Seems to work with my theme now which is slash, even though it worked fine before in the default theme. I know nothing about css and js, but I know this works now, not sure why. Hope this helps...
#6
I have did what is mentioned above and it does not work for me. I am using the voodoo dolly theme.
#7
clearing old issues - 4.6 is deprecated
#8
THe problem occurs when you have a tiny itsy bitsy bit of space between your menu's
Soon as you hover the mouse out of the menu into that 1 px area it exits the menu.
This could possibly fixed in the code with a longer delay before the menu closes OR you can just edit your CSS so that there is no space between the menus.
Attached is my added CSS that you can point to from the themes-> configuration tab.
#9
@boomroker, looks like your attachment didn't make it on. (Note, there is an attachments problem these days so just upload the file and then submit the comment *without* also clicking the "Attach" button.)
#10
Not a bug per se, but a CSS/theme thing so I'm closing this out.