Hi Matt,
> > I understand about inherited traits
> > and CSS, but how can I override those settings and display it the way
> > I want?
>
In the StyleSheetLayout shadowed tiddler (under the right hand sidebar
'More' tab) you'll find the css to overwrite by adding your custom
definition in the shadowed StyleSheet tiddler.
The definition you would like to apply to #sidebarOptions is already
found applied to tagging:
.tagged{float:right;margin:0.5em}
.tagging{display:none;float:left;margin:0.5em 0.5em 0.5em 0}
.tagging ul,.tagged ul{list-style:none;margin:0.25em;padding:0}
.tagging,.tagged{font-size:0.9em;padding:0.25em}
Therefore, writing the following in the StyleSheet would probably
display lists in the sidebar as you wanted them:
#sidebarOptions ul{list-style:none;margin:.25em;padding:0}
(untested)
Regards..