CSS Library: Horizontal CSS Menus: Here
jQuery Multi Level CSS Menu #2
Author: Dynamic Drive
This is a multi-level horizontal CSS menu created using a regular nested HTML list, then turned into a fully functional drop down menu using CSS and a touch of jQuery. The sub menus slide in and out into view, which also automatically reposition themselves horizontally if too close to the window's right edge.
Demo:
Important: Make sure your page contains a valid doctype for this menu to render properly.
The external files: The menu requires the following support files, which you should upload by default all to the same directory as your page itself:
- jqueryslidemenu.css
- jqueryslidemenu.js (inside this file, you should confirm the full URL to the 2 arrow images below)

If you wish to upload the above files to a different directory, be sure to edit "jqueryslidemenu.js" to update the URLs to the two arrow images used.
The CSS/ JavaScript: The below code should be added to the HEAD section of your page:
Rate this code:
Date Posted: 11/03/2008
Revision History: Nov 8th, 08': Limit # of queued animations to prevent animation stuttering
Usage Terms: Click here
Got a question or need help customizing this CSS code? Post it in the CSS Forums. If you have a comment or suggestion instead, post it in the comments section below.
Comment Pages 19 of 19 pages « First < 17 18 19
Problem:
A 1 pixel line appeared between all submenu items and when the mouse rolled over that line, the menu disappeared. This made it virtually impossible for the user to reach menu items that were further down the list.
Solution (found on another forum):
Replace the .jqueryslidemenu ul li ul code with:
.jqueryslidemenu ul li ul{
position: absolute;
left: 0;
display: block;
visibility: hidden;
background-color: #F3F3F3; /*Disappearing menu fix-BP */
top: 1em; /* no need to change, as true value set by script */
}
This is really great menu! But whats the procedure to use this in my site? Anyone there would you please help me??
Thanks

