I’m really struggling to change the color of the text in my blogs when they’re posted. They come up as pink, which is great on every other part of the website…but gets hard to read when applied to a long blog. I can’t find any links, videos, forums addressing this and could use some help. I currently have to highlight and change each paragraph one by one when creating the blog content to the color I want, and even then it doesn’t always work. Could someone please explain to me what the CSS code that I need is and where to put it. Thank You!
Hey @VERMILUV
Welcome to Shopify Community! Can you share your Store URL so I can have a look on it? Also, if you have password enabled then please share the password as well. Your cooperation would be greatly appreciated.
Best Regards,
Moeed
Hey @VERMILUV
Follow these Steps:
-
Go to Online Store
-
Edit Code
-
Find theme.liquid file
-
Add the following code in the bottom of the file above tag
RESULT:
If I managed to help you then, don’t forget to Like it and Mark it as Solution!
Best Regards,
Moeed
Hi @VERMILUV
Check this one.
- From you Admin page, go to Online Store > Themes
- Select the theme you want to edit
- Under the Asset folder, open the main.css(base.css, style.css or theme.css)
- Then place the code below at the very bottom of the file.
.article-template__content span {
color: black;
}
- And Save.
- Result:


