In the sttheme, it doesn't seem to handle line breaks and paragraphs very well, they all seem to run together. See http://Slay.me for details. Is there a quick tweak in the stylesheet I can make to fix this?
In the sttheme, it doesn't seem to handle line breaks and paragraphs very well, they all seem to run together. See http://Slay.me for details. Is there a quick tweak in the stylesheet I can make to fix this?
/* lets say: */
p {
padding-bottom: .5em;
text-indent: 2em;
}Thanks, that actually caused some other issues with the template, someone else sent me the following, which seems to work well:
.post p { padding-bottom: 7px;}
I had to use
.post p { padding-bottom: 16px;}
to get a decent paragraph representation. The comments suffer from the same problem but that too can be resolved by changing:
ul.commentlist li div p { margin:0px 5px;}
to
ul.commentlist li div p { margin:0px 5px; padding-bottom:16px;}.
This topic has been closed to new replies.