• [ Moderator note: moved to Fixing WordPress. ]

    I’d like to be able to reduce the size of the font for post titles on my home page. Is there some custom CSS that I can add to do this?

    Secondly, I’d like to further reduce the title font size when in mobile view, is there some further CSS that I can implement for this?

    https://dailyfantasysportsaustralia.com/

    Thanks in advance
    Morts81

Viewing 1 replies (of 1 total)
  • hello,
    Try this,
    home .posts .post h2 {
    font-size: 26px; //font size
    }

    @media only screen and (max-width: 500px) { //you can change max-width
    home .posts .post h2 {
    font-size: 26px; //font size
    }
    }

    I am just guessing that will work.Or Please post in the support forum of the theme you are using. They will help you in this.

Viewing 1 replies (of 1 total)
  • The topic ‘Font Size of Post Title on Home Page’ is closed to new replies.