is there anything that i can do so i can change the font color of my posts?
i also want to change the size of the headings so that it’s more proportional.
my website is ATVtemple.com
is there anything that i can do so i can change the font color of my posts?
i also want to change the size of the headings so that it’s more proportional.
my website is ATVtemple.com
i think i need to do some css code but not sure.
any help?
Hi There,
To change the color of your post content, please add this custom CSS under Theme Options > CSS:
.single-post .entry-content.content {
color: #de9e9e;
}
To change the font size of your heading inside the post content, please add this custom CSS:
.entry-content.content h2 {
font-size: 180%;
}
.entry-content.content h3 {
font-size: 150%;
}
.entry-content.content h4 {
font-size: 130%;
}
.entry-content.content h5 {
font-size: 110%;
}
In case you want to learn CSS please watch the videos below.
Thanks
Thanks,
i also want to change the color of any hyperlink that my header has. is there an specific css code for that?
Hi There,
You can use this CSS to change the color of header hyperlink.
.entry-content.content h2 a {
color: #ccc;
}
.entry-content.content h3 a {
color: #ccc;
}
.entry-content.content h4 a {
color: #ccc;
}
.entry-content.content h5 a {
color: #ccc;
}
You can change the color code.
Thanks
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.