Different font size in posts
- The topic ‘Different font size in posts’ is closed to new replies.
Need help? Check out our Support site, then
Hi,
For some times we have an issue with different font sizes in posts. In wordpress editor (with plugin: classic editor active) we use the same font for whole text excluding headers. But after publishing text that starts with bullets (list) is presented with different (bigger) font. We don’t know how to change it.
Could you please check it and help, sample post – different font starts with ingredients list:
https://poproszedokladke.pl/2020/09/08/mushroom-gua-bao-chinskie-buleczki-gua-bao-z-grzybami/
Many thanks,
The blog I need help with is: (visible only to logged in users)
Hi,
Font size is same. Font family is different for some reasons. Please try the following css snippet.
ul, li {
font-family: 'Alegreya', serif;
}
Thanks
Hi,
Thanks, it works!
Could you please help with one another size problem – site logo is very small on mobile browsers, but is OK on desktop browsers. I followed one of your suggestion from different topic and added below snippet, but problem is still unresolved on mobile:
@media (min-width: 800px) {
.site-logo {
max-height: 140px;
}
}
website: poproszedokladke.pl
Many thanks!
Hi,
Plz try the following css snippet.
@media (max-width: 779px) {
.site-logo {
max-height: 140px;
}
}
Thanks