I think it would be of great benefit if you would allow me to add a class attribute to the <UL> and <LI> tags in the HTML code. For example,
...
I could have
<ul>
<li class="treeCategory">first level list item</li>
<ul>
<li class="treeName">second level list item</li>
<ul>
<li class="treeItem">third level list item</li>
<li class="treeItem">third level list item</li>
Jim, I don't think you need this. I think you can solve your needs in the css-flile like this:
#mysitemap div.sitemap ul {list-style-type: none; margin: 0; padding: 0;}
#mysitemap div.sitemap ul li {margin: 0; padding: 15px 0 0 0;}
#mysitemap div.sitemap ul li ul {list-style-type: none; margin: 0; padding: 0;}
#mysitemap div.sitemap ul li ul li {margin: 0; padding: 5px 0 0 20px;}
and so on.
I have tried it in a small scale and it worked, so I am going to try it in a bigger scale soon.
- You may help me once by doing something for me, you help me a multiple of times by teaching me how to do it myself.