• Resolved morts81

    (@morts81)


    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 2 replies - 1 through 2 (of 2 total)
  • AddWeb Solution

    (@addweb-solution-pvt-ltd)

    Hello morts81,

    => Put below css code into Additional CSS textarea (Dashboard >> Apperance >> Customize) then click on Save & Publish button.
    => If there is no Additional CSS option then put below css code into your current theme’s style.css file located at wp-content/themes/your_current_active_theme/ folder.


    body.home .column h2 a {
    font-size: 20px;
    }
    @media only screen and (max-width:480px){
    body.home .column h2 a {
    font-size: 18px;
    }
    }

    Note : All Changes you done in style.css or other file are gone when you update theme. So prefer Child Theme

    Hope this will helps you.

    Thread Starter morts81

    (@morts81)

    That’s perfect, thankyou for the quick response.

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