• Resolved krzychoo74

    (@krzychoo74)


    Hi. I love this theme but I would like to change a font size for the title posts, posts and button Read more in a front page. How can I use a CSS for to do?

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hi @krzychoo74,

    If you want to confine the font-size changes to the home page only, please add the css below to your site via the customizer in Appearance > Customize > Additional css.

    The rem values for the font-size can be increased or decreased depending on how large you’d like the text to appear.

    /* Change font-size for post titles on the home page*/
    
    .home .posts .entry-title {
        font-size: 4.9rem;
    }
    
    /*Change font-size for excerpts on the home page for desktops*/
    
    @media screen and (min-width: 1601px) {
        .home .posts .entry-inner-content {
            font-size: 2.1rem;
        }
    }
    
    /* Change font-size for the read more link on the home page */
    
    .home .link-more a {
        font-size: 1.9rem;
    }
    
    

    If the css doesn’t work, please post a link to your site so I can take a closer look.

    Thanks ??

    Thread Starter krzychoo74

    (@krzychoo74)

    Hi. Thanks for your replay.
    It’s working: https://www.charleton-farm.co.uk

    You’re welcome ??

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Change front page’ is closed to new replies.