CSS Library: Vertical CSS Menus: Here
SuckerTree Vertical Menu (v1.1)
Author: Dynamic Drive
Nov 8th, 06: Fixed rendering issue in IE7, plus added support for automatic detection of sub menus width. No more configuring the "left" attributes!
This is a vertical, predominantly CSS based (with a touch of JavaScript) multi-level menu. It supports as many sub levels as you desire, plus multiple Suckertree menus on the same page. The CSS and JavaScript automatically adopts to your HTML code in each case.
The trick to Suckertree is a small adoptable piece of JavaScript that crawls the inner levels of a list menu and assigns the appropriate show/hide behavior to them. This differs from Suckerfish menu, which merely uses JavaScript to compensate for IE's shortcomings when it comes to CSS, so the menu is more rigid and requires manual changes to the CSS as the number of levels in your menu changes.
Demo:
The single image:
The CSS:
Rate this code:
Date Posted: 11/08/2006
Revision History: Updated Nov 8th, 06' to version 1.1
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 1 of 28 pages 1 2 3 > Last »
Can we get data dynamically for this menu?
Thnx
Brajendu
here's a start in asp.net:
if (dataSource != null) {
_html.Append("<ul>");
foreach (object dataObject in dataSource) {
_html.Append("<li>");
_html.Append(dataObject.ToString());
_html.Append("</li>");
}
_html.Append("</ul>");
}
The below list structure will work swell in IE, but will not show any submenus from Folder 1.2 in FF. I'm stumped.
Any work-arounds for this?
Cheers,
Chris
<div class="suckerdiv">
<ul id="suckertree1">
<li><a href="#">Item 1</a></li>
<li><a href="#">Item 2</a></li>
<li><a href="#">Folder 1</a>
<ul>
<li><a href="#">Folder 1.1</a></li>
<ul>
<li><a href="#">Sub Item 1.1.1</a></li>
<li><a href="#">Sub Item 1.1.2</a></li>
<li><a href="#">Sub Item 1.1.3</a></li>
</ul>
<li><a href="#">Folder 1.2</a></li>
<ul>
<li><a href="#">Sub Item 1.2.1</a></li>
<li><a href="#">Sub Item 1.2.2</a></li>
<li><a href="#">Sub Item 1.2.3</a></li>
</ul>
</ul>
</li>
<li><a href="#">Item 3</a></li>
<li><a href="#">Folder 2</a>
<ul>
<li><a href="#">Sub Item 2.1</a></li>
<li><a href="#">Folder 2.1</a>
<ul>
<li><a href="#">Sub Item 2.1.1</a></li>
<li><a href="#">Sub Item 2.1.2</a></li>
<li><a href="#">Sub Item 2.1.3</a></li>
<li><a href="#">Sub Item 2.1.4</a></li>
<li><a href="#">Sub Item 2.1.5</a></li>
<li><a href="#">Sub Item 2.1.6</a></li>
</ul>
</li>
</ul>
</li>
<li><a href="#">Item 4</a></li>
</ul>
</div>


.suckerdiv ul li a {
width: 100%;
}