How can I change the text size on my blogs? It is very tiny and hard to read.
I don’t know how you theme file structure is but try finding a file called section-blog-post.css and find .article-template__content and update or add some CSS to make it look like following:
.article-template__content {
margin-top: 3rem;
margin-bottom: 3rem;
font-size: 16px;
}
let me know if that helps, increase how big you want the size to be font-size: your-value.px;
Thank you!