Change post title from all uppercase

  • Unknown's avatar

    On the post title with my Sela theme, the font is all uppercase. I’d like it to be case sensitive – upper and lowercase capability. I have the custom css upgrade. How do I do that?

    The blog I need help with is: (visible only to logged in users)

  • Add another rule text-transform: none; to the following existing custom CSS, so the full style would be:

    h1.entry-title {
        font-size: 24px;
        text-transform: none;
    }

    The value of none for text-transform means the heading case will be rendered as you enter. You can read more about the other values here ((under the Values heading) and use them if you like the result of any other value like capitalize etc.

  • Unknown's avatar
  • The topic ‘Change post title from all uppercase’ is closed to new replies.