Hi list:<br><br>I'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 ("NavCell"), I have
<br><br>#NavCell ul {<br> list-style-type: none;<br> padding: 0;<br> margin: 0;<br>}<br><br>#NavCell li {<br> padding-bottom: 3px;<br> margin-left: 10px;<br> margin-right: 3px;<br>}<br><br>This gives me a nice shallow indentation of the first-level list items. But second-level list items are waaaayyy too deep (have far too much margin-left or padding-left), and I don'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. All it says is<br><br>## bullet lists<br>Markup('^*','block','/^(\\*+)\\s?(\\s*)/','<:ul,$1,$0>$2');
<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'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> font-size: 90%;<br>}<br><br>#NavCell li ul li {<br> margin-left: 15px;<br> 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>