Tagged: ,

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #46530
    Michaela
    Participant

    Hi Sakin,

    on my “blog” page, I show the featured image of the post, the title and a short excerpt underneath. How do I change the font-size of the excerpt?

    Thanks a lot!

    #46539
    Sakin
    Keymaster

    @Michaela: You can change the font size as per your need in the following css and then add it in “Appearance => Theme Options => Custom CSS” box.

    /* For Title */
    .archive .entry-header .entry-title { font-size: 26px; }
    /* For Excerpt Text */
    .archive .entry-summary { font-size: 16px; }
    #46571
    Michaela
    Participant

    Hi Sakin,

    thanks a lot for this solution. However, I always write all my changed codes in a css stylesheet belonging to my child theme (less loading time than when inputting in the internal Custom CSS box). When I put your code in there, it’s not working. I already tried putting #main in front of it, but it’s not working either. Any ideas?

    Cheers

    #46604
    Sakin
    Keymaster

    @Michaela: If it’s not working then can you send me your site URL and explain then I can check in why it is not working.

    #46882
    Klaas
    Member

    Hi Sakin,

    Do you know how I can change the font family (for example from inherit to arial) of the titles of my posts? I’ve been looking but can’t find the solution.

    And, on my right sidebar under ‘Recent Posts’, is there a way to change the color of the text of the titles from grey to black?

    http://www.exercisestrong.com

    Thanks much,

    Klaas

    #46926
    Sakin
    Keymaster

    @Klaas: Catch Everest default theme is sans-serif and when using inherit, it will load the default font.

    Changing font is nice and cool in Pro version as you will get option to use all Web Safe Fonts and popular Google fonts from “Appearance => Theme Options => Font Family Options”

    The Arial font is web safe font. So, to change the title fonts you can add in the following css in “Appearance => Theme Options => Custom CSS” box.

    .entry-header .entry-title {
        font-family: Arial, sans-serif;
    }

    For the sidebar widget link color, you can add the following css in “Appearance => Theme Options => Custom CSS” box.

    .widget-area .widget a {
        color: #404040;
    }
Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘Change size of post titles on blog page’ is closed to new replies.