How do I change the paragraph font size on a blog page?

I’ve built the site www.dynamiclogistix.com with the X theme, and they’ve asked me to add a Story Chief enabled blog page, which I’ve done. I can’t seem to change the size of the body copy or headline using the Typography theme options without making the font sizes on the rest of the pages much too large. Is there a way for me to specify the body copy on this page? Also, the headline “STOP OVERPAYING FOR SHIPPING” is smaller than I would like, it it’s possible to change that.
https://www.dynamiclogistix.com/blog/

Hi there,

You will have to add some custom CSS to be able to control the font sizes of the text on the blog page.

Please try adding these codes in the Global CSS:

.blog .entry-title a {
    font-size: 25px;
}

.blog .entry-content {
    font-size: 1em;
}

Here are some reference links related to the suggestions above:

Hope this helps.

Thanks so much for the quick response! Yes, that addressed the font size on the blog page, but if you click the headline to read the full post the font size goes back to the original smaller size. Any way to address that?

Hi there,

Please try updating the code to:

.blog .entry-title a,
.single-post .entry-title {
    font-size: 25px;
}

.blog .entry-content,
.single-post .entry-content {
    font-size: 1em;
}

Hope this helps.

That was exactly what I needed, thank you so much! OUTSTANDING support.

You are most welcome. :slight_smile:

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.