Sent by Russell Griechen on 13 February 2003 20:08
> I'm still fussing with a menu I got some help with last week. You can see
it at http://www.austin.girlschoir.com/template.html. I used a list with
display:none on the list bullets thanks to help from you all.
You may want to play around with this
<style type="text/css">
<!--
.indentlist { text-indent: 10pt}
-->
</style>
My suggestion is to fake a nested list using CSS.
<ul>
<li> listItem </li>
<li> listItem </li>
<li> listItem </li>
<li class="indentlist"> IndentedList</li>
<li class="indentlist"> IndentedList</li>
<li class="indentlist"> IndentedList</li>
<li class="indentlist"> IndentedList</li>
<li class="indentlist"> IndentedList</li>
<li> listItem </li>
<li> listItem </li>
<li> listItem </li>
</ul>
Russell Griechen