Link to home
Start Free TrialLog in
Avatar of ramiseesniblic
ramiseesniblicFlag for United Kingdom of Great Britain and Northern Ireland

asked on

CSS tree stucture

Hello.

Could anyone point me in the direction of a CSS tree structure (like a directory tree).

I really need to use <UL> and <LI> html elements so that the tree still looks good when style sheets and images are not avaliable.

It needs to be multi-level:

e.g.

|-a
| |-b
| |-c
|   |-d
|   |-e
| |-f  


Tar
Avatar of aplimedia
aplimedia
Flag of Spain image

These menus also use JavaScript. Here is a good site to get one with all the code ready to go. Best of all its totally free!!

http://www.softcomplex.com/products/tigra_tree_menu/

Go get em:)
<ul>
  <li>a</li>
     <ul><li>b</li>
            <li>c</li>
               <ul>
                 <li>d</li>
                 <li>e</li>
               </ul>
            <li>f</li>
     </ul>
</ul>
 
Avatar of bfider2004
bfider2004

ASKER CERTIFIED SOLUTION
Avatar of mreuring
mreuring
Flag of Netherlands image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of ramiseesniblic

ASKER

Wonderfull mreuring.  Just what I was after.  

Excellent