Changing font size of blog post

I changed the font size and color of blog posts by adding the following CSS. (URL for page with blog posts is in secured note.) However, the font-size and color did not change on pages with more detail about the post. Why didn’t the change occur on both the post excerpt and all post content?

.entry-content.excerpt p {
font-size: 16px;
color: #000000;
}

Hello @eutaw,

Thanks for writing to us.

I checked your site it seems that you have set the style for the excerpt text only, for the post details page content I would suggest you add this custom CSS code under Theme Option—> CSS.

.entry-content.content {
font-size: 16px;
color: #000000;
}

The purpose of providing custom CSS is to show you how to add CSS code to your site. Writing custom CSS is outside the scope of our theme support. If you need more customization, you need to learn CSS and learn how to use the browser’s element inspector.In case you have no idea about coding you can subscribe to One where customization questions are answered.

Hope it helps.
Thanks

That works. Thank you!!

Hello @eutaw,

Glad that we were able to help you. Please feel free to open a new thread if you have any more concerns regarding our theme and theme settings.

Thanks

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