How can I adjust the text size on my Taste Theme blog posts?

How can I adjust the text size on my Taste Theme blog posts?

Firdos1
Excursionist
17 0 4

How can I change the text size on my blogs? It is very tiny and hard to read. 

 

https://firdosmarket.com/blogs/product-review

 

 

Replies 2 (2)

kevinkarma55
Shopify Partner
101 11 11

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;

 

Please remember to Like & Mark Solution to the post if it helped you.
Thanks !
If you'd like to support me, you can Buy Me a Coffee
Need help with anything related to Frontend?
Checkout kevinkarma.me
Firdos1
Excursionist
17 0 4

Thank you!