Hi list:<br><br>I&#39;d like to be able to specify the amount of indentation for second-level list items (two asterisks) in my SideBars.<br><br>To format first-level un-ordered lists in my sidebar (&quot;NavCell&quot;), I have
<br><br>#NavCell ul {<br>&nbsp;&nbsp;&nbsp; list-style-type: none;<br>&nbsp;&nbsp;&nbsp; padding: 0;<br>&nbsp;&nbsp;&nbsp; margin: 0;<br>}<br><br>#NavCell li {<br>&nbsp;&nbsp;&nbsp; padding-bottom: 3px;<br>&nbsp;&nbsp;&nbsp; margin-left: 10px;<br>&nbsp;&nbsp;&nbsp; margin-right: 3px;<br>}<br><br>This gives me a nice shallow indentation of the first-level list items.&nbsp; But second-level list items are waaaayyy too deep (have far too much margin-left or padding-left), and I don&#39;t know how to specify margins/padding for those.
<br><br>I found what I believe to be the controlling code in scripts/stdmarkup.php, but it is nearly opaque to me.&nbsp; All it says is<br><br>## bullet lists<br>Markup(&#39;^*&#39;,&#39;block&#39;,&#39;/^(\\*+)\\s?(\\s*)/&#39;,&#39;&lt;:ul,$1,$0&gt;$2&#39;);
<br><br>Searching the intertubes, I found the site <a href="http://www.simplebits.com/notebook/2003/10/19/styling_nested_lists.html">http://www.simplebits.com/notebook/2003/10/19/styling_nested_lists.html</a> , which looks as if it might provide a css-literate reader with a healthy bunch of clues, but it&#39;s just that little bit too far over my head.
<br><br>Extrapolating from what I found there, I tried<br><br>#NavCell li ul {<br>&nbsp;&nbsp;&nbsp; font-size: 90%;<br>}<br><br>#NavCell li ul li {<br>&nbsp;&nbsp;&nbsp; margin-left: 15px;<br>&nbsp;&nbsp;&nbsp; margin-right: 3px;<br>}<br><br>But that made no difference to font-size or indentation.
<br><br>Anyone care to take a stab at it?<br><br>