• How do I change the font size and color in 2010 for the Title and the Tagline. Thanks

    Also, is there an easy plugin that does this?

Viewing 1 replies (of 1 total)
  • You can change those properties by adding some rules to style.css. You should create a Child theme to make your changes. If you do not, all of your changes will be lost if you update your theme.

    Try adding lines like these to the end of your child theme’s style.css:

    #site-title a {
       font-size: 60px;
       color: red;
    }
    #site-description {
       font-size: 30px;
       color: red;
       width: 500px;
       margin-top: -50px;
    }

    Change the values to suit yourself.

Viewing 1 replies (of 1 total)
  • The topic ‘Change Font Size and Color in 2010’ is closed to new replies.