I am trying to change the body/content color of just the blog not for the entire site. I have not been able to find it in the code. Any guidance would be very appreciated.
You could add this to your theme layout file (probably layout/theme.liquid) inbetween the tags:
{% if request.page_type == 'blog' %}
{% endif %}
you might need to use request.page_type == ‘article’ as well or instead of, based on your needs.
Hi @ktehle ,
Can you kindly share your store link (with the password, if any) with us? We will check it and suggest you a solution if possible.
To change the blog content color in Shopify without affecting the whole site, go to Online Store → Themes → Edit Code and open theme.css, base.css, or theme.scss.liquid. Add this at the bottom:
.template-blog .main-content { color: #yourcolor !important; }
If that doesn’t work, try:
.blog .main-content { color: #yourcolor !important; }
Save and refresh your blog page to see the changes. Let me know if you need help