In the main entry view, how can I get usernames to display reliably under the userpic?
.entry-poster{float:right;clear:right;margin-left:.7em;margin-right:.3em;margin-bottom:.3em;}/*--- sets username position*/ .userpic a {border:0;}/* makes more room by removing possibly unwanted user icon border-bottom */
Things in the fluid layout...the bulleted list on the tags page isn't indented.
That's because you have an unclosed, empty statement for the tags container in your CSS:
.tags-container ul {
Change that to .tags-container ul {}
Or just get rid of that line since you're not using it.
Use this for multi-level indents:
.tags-container .tags_multilevel li li {margin-left:30px!important;}/* specifying ".tags-container .tags_multilevel" ensures sidebar tags won't be affected by this code */
I'm posting this without looking through all your CSS for possible adjustments because I have to shut down for the night very soon (but I may or may not post more replies before doing so), but I'll keep coming back to post whatever answers I can rustle up.
Some answers...
Date: 2012-02-20 04:43 am (UTC).entry-poster{float:right;clear:right;margin-left:.7em;margin-right:.3em;margin-bottom:.3em;}/*--- sets username position*/
.userpic a {border:0;}/* makes more room by removing possibly unwanted user icon border-bottom */
Things in the fluid layout...the bulleted list on the tags page isn't indented.
That's because you have an unclosed, empty statement for the tags container in your CSS:
.tags-container ul {
Change that to
.tags-container ul {}
Or just get rid of that line since you're not using it.
Use this for multi-level indents:
.tags-container .tags_multilevel li li {margin-left:30px!important;}/* specifying ".tags-container .tags_multilevel" ensures sidebar tags won't be affected by this code */
I'm posting this without looking through all your CSS for possible adjustments because I have to shut down for the night very soon (but I may or may not post more replies before doing so), but I'll keep coming back to post whatever answers I can rustle up.