> i would like this hierarchy to be indented
> towards the right, how can i do that?
Do it in CSS.
Here's the relevent bit from my CSS at www.patst.com.au that does something
similar. As you can see, as Lenya adds new submenus, there's a higher number
in the class that it asks for from the CSS (.menuitem-1, .menuitem-2...).
You can just add padding-left to the relevant CSS declarations.
Hope it helps.
--------------------------------------
#menu {
text-align: right;
}
.menublock-1 .menublock-2 { display: none; }
.menuitem-selected-1, .menuitem-1 {
font-weight: bold;
float: left;
background: #F7F4D1;
background-image: url(/lenya/patrickstreet/live/images/bullet.gif);
background-repeat: repeat-y;
background-position: right;
padding-right: 26px;
padding-top: 5px;
padding-bottom: 5px;
width: 243px;
margin-bottom: 4px;
}
.menuitem-2, .menuitem-selected-2 {
float: left;
width: 238px;
font-size: 80%;
padding: 0px 15px 5px 5px;
}
.menuitem-3 { font-size: 60%; }
.menuitem-selected-3 { font-size: 60%; }
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]