• Closed
  • Chuck-Bruce
    Spectator
    August 17, 2017 at 3:20 am #34541

    Using the .evolve+ theme, I am trying to change just the typography of the Blog page’s posts. I went to Customize->Typography->Post Title and Content, then changed it to a bit smaller font for each of them. The hope was to make the blog page’s content a little different than the various static pages’ content.

    But changing it there also changed it on all my static pages that use the default template (not the blog template). Is there any way to just change the font on the blog pages titles and content?

    Thanks!

    Priyank
    Spectator
    Posts: 747
    August 17, 2017 at 2:45 pm #34546

    Hi,

    You have to give below custom css in additional css area of the customizer.

    For Post Title:
    .post.type-post .entry-title,
    .post.type-post .entry-title a {

    //Give your custom Font Property

    }

    For Post Content:
    .post.type-post .entry-content p {

    //Give your custom Font Property

    }

    Thank you

    Chuck-Bruce
    Spectator
    Posts: 65
    August 20, 2017 at 8:33 pm #34583
    This reply has been marked as private.
    Priyank
    Spectator
    Posts: 747
    August 21, 2017 at 9:26 am #34586

    Hi,

    We think that you have done your job by yourself, We check your css for blogs. It’s right, good job.

    .post.type-post .entry-title, .post.type-post .entry-title a {
    font-family: 'Roboto', arial, sans-serif;
    color: #51545c;
    font-size: 20px;
    line-height: 20px;
    font-weight: bold;
    letter-spacing: 0px;
    }

    .post.type-post .entry-content p {
    font-family: 'Roboto', arial, sans-serif;
    color: #333333;
    font-size: 16px;
    font-style: italic;
    line-height: 16px;
    letter-spacing: 0px;
    }

    Thank you

    Chuck-Bruce
    Spectator
    Posts: 65
    August 21, 2017 at 6:19 pm #34595

    Thanks again, Priyank. Yes, I found the syntax in the styles.css file and kind of just mimicked it-:)

    Priyank
    Spectator
    Posts: 747
    August 22, 2017 at 6:58 am #34596

    You are Welcome

    Thank you