• Resolved Surfphysio

    (@surfphysio)


    Hi there,

    The site im working on is https://surfphysio.com (Pinnacle theme free) Im trying to make the home page title and sub title in the header a larger font to stand out more.

    How do I do this?

    Kind regards,

    Phil

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hey,
    In your theme options > custom css add this:

    .home-page-title {
        font-size: 120px;
        line-height: 120px;
    }
    .home-page-subtitle {
        font-size: 30px;
        line-height: 50px;
    }
    @media (max-width: 768px){
    .home-page-title {
        font-size: 55px;
        line-height: 60px;
    }
    .home-page-subtitle {
        font-size: 18px;
        line-height: 20px;
    }
    }

    This will also shrink it for small screens so it fits there too.

    Kadence Themes

    Thread Starter Surfphysio

    (@surfphysio)

    Awesome thank you! Worked a treat

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘How to change home header font’ is closed to new replies.