OK, on your page with the tree on it, make a division that contains the menu:
Code:
<div id="foldcontainer">
<ul>
<li id="foldheader">Familie</li>
<ul id="foldinglist" style="display:none" style=&{head};>
<li><a href="http://home.hccnet.nl/m.provoost">Oude homepage</a></li>
<li><a href="http://www.provoost.info/photos">Foto album</a></li>
<li id="foldhe . . .
. . . </ul>
<li><A HREF=./Muziek/Git/Wilhelmus/Wilhelmus.txt>Wilhelmus</a></li>
</ul>
</ul>
</ul>
</div>
Make the style section look like this:
Code:
<style type="text/css">
#foldcontainer {
margin-left:-15px;
}
#foldheader{cursor:pointer;cursor:hand ; font-weight:bold ;
list-style-image:url(./img/fold.gif)}
#foldinglist{list-style-image:url(./img/list.gif);margin-left:-25px!important;margin-left:8px;}
</style>
Or better yet, really neaten it up (values are the same, it is just easier on the eyes this way):
Code:
<style type="text/css">
#foldcontainer {
margin-left:-15px;
}
#foldheader {
cursor:pointer;
cursor:hand ;
font-weight:bold ;
list-style-image:url(./img/fold.gif);
}
#foldinglist {
list-style-image:url(./img/list.gif);
margin-left:-25px!important;
margin-left:8px;
}
</style>
Bookmarks