Viewing 2 replies - 1 through 2 (of 2 total)
  • Looking at your style.css file you will find around line 30 something along these lines:

    #contentarea {
      text-align:justify;
    }

    That is currently controlling the alignment of your titles (and post content) … try adding something along these lines:

    .post h2 {
      text-align:left;
    }

    See how that looks …

    PS: The length of your post title will affect the aesthetic look of the ‘text-align:left;’ property, you might consider seeing what the maximum amount of characters in a title is before it wraps to the next line.

    Thread Starter advicemaven

    (@advicemaven)

    Thank you so much! That worked perfectly.

    Great suggestion about the maximum characters in a title too. It doesn’t look nearly as nice when the text wraps. I’ll have to pay more attention to that.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Make post title left justified’ is closed to new replies.