• Hi there,

    I am having trouble changing the site title to title case, rather than all caps. I have tried installing the plugin Easy Google Fonts but that hasn’t help.

    Any advice would be much appreciated. I am fairly inexperienced with CSS but happy to learn.

    Many thanks

    Aaron

Viewing 1 replies (of 1 total)
  • Aaron,

    The CSS in styles.css that controls this is:

    .blog-title a {
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 700;

    And the property that you need to modify is this:
    text-transform: capitalize;

    You can directly edit the style.css file of the theme but when the theme is updated, you lose your custom coding.

    A simpler way to do it is to add some CSS to the “Additional CSS” section of the customize theme area:

    .blog-title a {
    text-transform: capitalize;
    }

    I have created a child theme for my purposes in which case I would add that CSS to my child theme’s style.css file.

    You can Google the CSS property for more info.

    For a good tutorial on adding custom CSS to your WordPress site:
    https://www.wpbeginner.com/plugins/how-to-easily-add-custom-css-to-your-wordpress-site/

    Good luck!
    Ken

Viewing 1 replies (of 1 total)
  • The topic ‘Change site title to title case’ is closed to new replies.