esmi,
Thank you! I modified your style a bit to get the effect I wanted:
.post ul {
margin-left:0;
padding:0.2em;
}
which fixes the main content issue perfectly.
to get rid of the bullet in the sidebar i ended up doing to following for the sidebar css:
#shoutsidebar { list-style-type: none; width: 330px; float: right; }
#shoutsidebar ul { list-style-type: none; }
#shoutsidebar ul li { list-style-type: none; }
#shoutsidebar ul ul { list-style-type: none; }
which is probably not the best way to deal with it — do you have an idea of how I could do that better so my sidebar content doesn’t indent or have the bullet?
thanks again.