Title: Title capiltization
Last modified: August 22, 2016

---

# Title capiltization

 *  [deetz32](https://wordpress.org/support/users/deetz32/)
 * (@deetz32)
 * [11 years, 5 months ago](https://wordpress.org/support/topic/title-capiltization/)
 * 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](https://wordpress.org/support/users/jennifer-roberts/)
 * (@jennifer-roberts)
 * [11 years, 5 months ago](https://wordpress.org/support/topic/title-capiltization/#post-5540652)
 * Can you post a link to your site? Hard (impossible) to help with CSS questions
   without looking at an actual page.
 *  [ThePixelMe](https://wordpress.org/support/users/thepixelme/)
 * (@thepixelme)
 * [11 years, 5 months ago](https://wordpress.org/support/topic/title-capiltization/#post-5540660)
 * 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](https://developer.mozilla.org/en-US/docs/Web/CSS/text-transform)
 *  Thread Starter [deetz32](https://wordpress.org/support/users/deetz32/)
 * (@deetz32)
 * [11 years, 5 months ago](https://wordpress.org/support/topic/title-capiltization/#post-5540725)
 * 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.

 * ![](https://i0.wp.com/themes.svn.wordpress.org/serene/1.4/screenshot.png)
 * Serene
 * [Support Threads](https://wordpress.org/support/theme/serene/)
 * [Active Topics](https://wordpress.org/support/theme/serene/active/)
 * [Unresolved Topics](https://wordpress.org/support/theme/serene/unresolved/)
 * [Reviews](https://wordpress.org/support/theme/serene/reviews/)

 * 3 replies
 * 3 participants
 * Last reply from: [deetz32](https://wordpress.org/support/users/deetz32/)
 * Last activity: [11 years, 5 months ago](https://wordpress.org/support/topic/title-capiltization/#post-5540725)
 * Status: not resolved