Site logo

Archived topic

Default of H1 for Post Titles

3 replies · Started by Dave on April 2, 2019

Viewing posts 1–4 of 4

Hi,

Can you guide me to a resource that can tell me how to target post titles for reducing the font size? GPP uses H1 by default, and I would like to override that and use another Header size or manually adjust it. I've searched the forum, but it's not clear to me.

Thanks for a great product!

Dave ~

Hi there,

you can add this CSS:

/* Desktop */
.single-post h1 {
    font-size: 48px;
}

/* Mobile */
@media (max-width: 768px) {
    .single-post h1 {
        font-size: 32px;
    }
}

Thank you. That worked out well.

Glad to be of help

This archived topic is closed to new replies.