No matter what i use for the blog, left, or centered, it does not look right. Any suggestions. I cant seem to get choose justified.
It makes it look sloppy: http://bit.ly/oW8OTS
No matter what i use for the blog, left, or centered, it does not look right. Any suggestions. I cant seem to get choose justified.
It makes it look sloppy: http://bit.ly/oW8OTS
where do you add these styles? in the post editor or the style.css?No matter what i use for the blog, left, or centered, it does not look right.
at least the latest post has a lot of inline styles, which are probably inserted when formatting the text in the psot editor; these are overwriting any styles from style.css;
example:
<p style="text-align: left;"><strong>It can be a catastrophe when baby boomers don’t keep up with the times. Just ask the king of studs, Hugh Hefner.</strong></p>
this forces the text to be left aligned, and bold.
remove the formatting in the posts directly;
edit style.css of your theme, find:
.post p {
margin:10px 0; padding:0;
}
and for instance change to:
.post p {
margin:10px 0; padding:0; text-align: justify;
}You must log in to post.