[Support request] H3 – H6 in mobile view

Home Forums Support [Support request] H3 – H6 in mobile view

Home Forums Support H3 – H6 in mobile view

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #531794
    Gillian

    Is there a way I can set the font size for H3 – H6 when in mobile view?

    Thanks

    #531894
    Leo
    Staff
    Customer Support

    Hi there,

    Try this CSS:

    @media (max-width: 768px) {
        h3 {
            font-size: 20px;
        }
        h4 {
            font-size: 15px;
        }
        h5 {
            font-size: 10px;
        }
        h6 {
            font-size: 10px;
        }
    }

    Adding CSS: https://docs.generatepress.com/article/adding-css/

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.