Here are my results -- I'd like to contribute this snippet of wisdom to the pmwiki documentation somewhere, but don't know where. Should we have a skinning tips page, for little pieces like this?<br><br>Specify the indentation, separation and other style characteristics of list-items (bulleted lists) on the sidebar:
<br><br>The default PmWiki skin uses the following<br><pre>#wikileft ul { list-style:none; padding:0px; margin:0px; }<br>#wikileft li { margin:0px; padding-left: 6px; }</pre>This sets up un-numbered lists to appear in the SideBar without the usual bullets (list-style:none), and clears out any browser-based list-rendering rules (padding:0px; margin:0px)
<br><br>Then padding-left: 6px formats list items so that they appear slightly indented from regular text on the SideBar. This is minimal formatting -- more can be done.<br><br>Format list-items with hanging indents (for clarity when lines wrap):
<br><pre>#wikileft li { text-indent: -10px; margin: 0px 3px 5px 23px; } /*experiment with different values of text-indent and the final margin specification*/<br></pre>
Format second-level list-items:<br><br>Second-level list-items inherit the rules for the first-level items, so they will automatically have hanging indents if you use them there, etc. To fine-tune their characteristics, you can do things like:
<br><pre>#wikileft ul ul li { font-size: 85%; margin: 0px 3px 5px 10px; }</pre>
<br>