Vertical Pop Out Menu
Does anyone know any sites where i could find a CSS Vertical Pop Out Menu . I have searched google but i can't really find anything good. Here is an example
For vertical nav pop out I use the traditional suckerfish drop down an son of suckerfish javascript
I modify the the suckerfish css to the following
ul {
padding: 0;
margin: 0;
list-style: none;
}
li {
position: relative;
width: 10em;
}
li ul {
display: none;
position: absolute;
top: 0em;
left: 10em;
}
li:hover ul { display: block; }
The key difference being removing float:left from the LI element and changing LI UL left attribute to be the width of LI.
Thread Information
Users Browsing this Thread
There are currently 1 users browsing this thread. (0 members and 1 guests)
Posting Permissions
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
Forum Rules
Bookmarks