• Is it possible to change the title from every letter being capitalized, to making the first letter of each word a capital?

    Thanks

Viewing 3 replies - 1 through 3 (of 3 total)
  • JenR

    (@jennifer-roberts)

    Can you post a link to your site? Hard (impossible) to help with CSS questions without looking at an actual page.

    If you mean to change the case of the site logo link, use this:

    #logo a {
        text-transform: none;
    }

    If you mean to change the case for the post titles, add this to your custom CSS

    .post-content .title,
    .post-content .title a {
        text-transform: none;
    }

    text-transform: none resets the title case to whatever you type.

    You can also replace none with uppercase (all letters in uppercase), capitalize (capitalize only first letter of a word), lowercase (all letters in lowercase), etc.

    More information about text-transform here: https://developer.mozilla.org/en-US/docs/Web/CSS/text-transform

    Thread Starter deetz32

    (@deetz32)

    Thanks very much. I was referring to the site logo link, and it works great.

    Do you know if there is a way to make some words in the site logo link bold, and other thin?

    Thanks again

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Title capiltization’ is closed to new replies.