Hello,
For some reason, all of the body text in my blogs is larger than everywhere else on the site. Blog posts are 23px with 39px line height while the rest of the site is 20px with 33px line height. I added this code to my Custom CSS, which works for the body paragraphs, but not bulleted lists or numbered lists. Is there an easier way to change this or can you help me figure out how to change the list sizes as well?
.single .template-blog p {
font-size: 20px!important;
line-height: 33px!important;
}
Here is a link to an example blog post: http://mjm.flywheelsites.com/healthcare-practice-making-digital-mistakes/
Thank you!
Hi,
Please change your code to following one
.single .template-blog p, .single .template-blog li {
font-size: 20px!important;
line-height: 33px!important;
}
Regards,
Yigit
That worked great. Thanks, Yigit!