Blog post and pullquote change font size

Hello,

I’d like to increase the font size of my blog post content.

I also want to increase the size of my pullquote font. To create the pullquote, I used the following code: [pullquote cite= “Adam Phillips” type=“left, right”]

I tried adding this: [pullquote cite= “Adam Phillips” type=“left, right” style=“font-weight: normal;font-size: 20px;”]
but it didn’t work

an example post:

Summary

https://thehumusproject.org/a-letter-to-the-earthworms/?preview_id=662&preview_nonce=30fe5fe74c&post_format=standard&_thumbnail_id=-1&preview=true
password: earthworm

Hello @Savz01,

Thanks for asking. :slight_smile:

You can add following CSS under X > Launch > Options > CSS to change font size of blog post content and blockquote:

.single-post p {font-size: 22px;}

blockquote.x-blockquote {font-size: 60px !important;}

Thanks.

thanks, that worked for the post content!
however - it’s also changed the size of my post meta (which i’ve set to on). and increased the size of my © text in the footer. can i add some code to keep these small/the original size?

Hello @Savz01,

Thanks for updating thread. Looks like you have removed article and posts from blog section too. Please replate above code with following:

.single-post .entry-wrap p {font-size: 22px;}

You just need to replace first code that I shared previously i.e .single-post p {font-size: 22px;}.

Thanks.

hi, thanks, that worked for the © text in the footer, but the meta text is still big. is this another code?
(i changed the blog post to be scheduled for tomorrow but have changed it back so that you can see it.)

Hello @Savz01,

Thanks for updating thread. You can add following CSS:

p.p-meta {font-size: 85.7% !important;}

Thanks.

Hi, I’ve tried adding this but it doesn’t change anything…

Please try this.

.p-meta {
    font-size: 12px !important
}

Thanks.

Great that worked, thank you!

You are most welcome. :slight_smile:

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