On this product page >> https://toltano.com/products/cosybabe-3-piece-knit-set
I want to change the text colour from White to black in the blocks that say “Why our customers like Cosybabe” and “30 day happiness guarantee”
But I cannot see how to do this through the editor
Can anyone help?
1 Like
Hello @nvisibl1 
To change that text color to black, in Shopify Admin, you can go to Edit theme code, open file base.css and add this code at the bottom
#shopify-section-template--21528359305489__44505c28-ffda-4116-acf2-f1e3389178ee .title {
color: black;
}
You also need to change the background image to brighter image in the editor to make the black text visible.
1 Like
Hi @nvisibl1
You can do that by adding this code to Custom CSS of those section
.rich-text__heading { color: #000; }
Hello There,
- In your Shopify Admin go to online store > themes > actions > edit code
- Find Asset > base.css and paste this at the Bottom of the file:
section#shopify-section-template--21528359305489__88063f11-f3a0-4c1d-b21a-6fbfcd444512 h2.rich-text__heading.rte.h1 {
color: red;
}