http://theimposter.org/examples/exploder2/iexplode.htm
Here is a very easy one that 'sticks' open, but I don't know if you want a verticle menu like this.
But to add a special class to a link is very simple.
For example, lets say that you want a button to stay 'active' for the page you are on.
Suppose your colors are "color: #CCCCCC; + background:#000000;" for the 'active', or 'hover' state, make an id that apllies to all the states (link, visited,[hover and active as well]) like this:
Quote:
/*current Link*/
#menu a#current,
#menu a#current:link,
#menu a#current:visited {
color: #CCCCCC;
background: #000000;
}
|
And then add the selector (id or class) to the native link, ie:
Here you are
It is really quite easy, if you show me the page, I will do this with you.
It is much easier than it looks!
:O)