Hey! Is there a way to change the font for the body of the post, without it affecting the sidebar font?
When I change the .a CSS, it affects the whole page, but I want it to just affect the left side (where the content is).
Hello Morr,
Thanks for writing in!
As you are not using Content builder, you will have to use some CSS under Pro > Theme Options > CSS to change the font for single blog post content showing in left section.
.x-main.left {font-family: "Times New Roman", Times, serif;}
.x-main.left h2, .x-main.left h1 {
font-family: "Times New Roman", Times, serif;
}
.x-main.left p {
font-size: 0.9em;
}
1- I have found the proper CSS code selector using the Chrome browser Developer Toolbar: https://www.youtube.com/watch?v=wcFnnxfA70g
2- For the CSS code itself, I suggest that you get started with this tutorial: https://www.youtube.com/watch?v=yfoY53QXEnI
Thanks.
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.