Viewing 1 replies (of 1 total)
  • No matter what i use for the blog, left, or centered, it does not look right.

    where do you add these styles? in the post editor or the style.css?

    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;
    	}

Viewing 1 replies (of 1 total)
  • The topic ‘Blogs writing looks off’ is closed to new replies.