The default size in the bullet list is smaller then the size of normal page of post font. How can I change the font size in the bullet lists in Quick CSS?
Thanks,
Regards
Michiel
Hey,
Just add this:
.entry-content li {
font-size: 14px;
}
Adjust the font size.
Regards,
Ismael
Hi Ismael,
Thank you.
Can you also help me change the fonts of title, H1, H2, H3 etc.. in a blog and page… and also on the blog overview page so it’s very clear what the title is and what subtitles. Right now in default the H2 is bigger dan the H1.
Thanks
Michiel
Hi,
You can change the blog post title using this:
h2.post-title a {
font-size: 30px;
}
The main title, using this:
.main-title a {
font-size: 40px;
line-height: 60px;
}
Regards,
Ismael
Hi Ismael,
thanks, but this code doesn’t affect the H2 font size:
h2.post-title a {
font-size: 30px;
}
But if I use this for h1:
h1.post-title a {
font-size: 30px;
}
it works.
What goes wrong? This is my code in Quick CSS:
.template-blog .post .entry-content {
font-size: 15px;
}
p {
font-size: 15px;
line-height: 25px;
}
.entry-content li {
font-size: 15px;
}
h1.post-title a {
font-size: 30px;
}
h2.post-title a {
font-size: 20px;
}