• Closed
  • Chuck-Bruce
    Spectator
    17.08.2017 at 03:20 #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
    17.08.2017 at 14:45 #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
    20.08.2017 at 20:33 #34583
    This reply has been marked as private.
    Priyank
    Spectator
    Posts: 747
    21.08.2017 at 09:26 #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
    21.08.2017 at 18:19 #34595

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

    Priyank
    Spectator
    Posts: 747
    22.08.2017 at 06:58 #34596

    You are Welcome

    Thank you