Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #111573
    Jvece1
    Participant

    How do I change the font/font size of my post titles, both in the full post and in the excerpts on my main page?

    http://www.the-single-step.com

    Thanks,

    Jeff Vece

    #111602
    Mahesh
    Keymaster

    @jvece1: Go to Dashboard=> Appearance=> Customize=> Additional CSS box and add the following CSS:

    #primary .hentry .entry-title {
        font-family: Times New Roman;
        font-size: 30px;
    }

    Regards,
    Mahesh

    #111635
    Jvece1
    Participant

    Thanks!

    I noticed that changes the title font on the homepage excerpt and the title font on the full post. Is there a way to change them separately?

    #111696
    Mahesh
    Keymaster

    @jvece1: Use the following CSS:

    /* For homepage */
    .blog #primary .hentry .entry-title {
        font-family: Times New Roman;
        font-size: 30px;
    }
    /* For full post page* /
    .single #primary .hentry .entry-title {
        font-family: Times New Roman;
        font-size: 30px;
    }

    Regards,
    Mahesh

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘Change font/size of posts titles’ is closed to new replies.