I’m trying to change the color of the “Banana Paper Thinking of You Cards” title from Green to Black. I’ve been trying to figure out how to do this through the theme customization and had no luck. The theme we are using is Dawn! How can I fix this issue?
From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
Find the theme that you want to edit and click on “Actions” and then “Edit code”.
In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
And Save.
.product__title h1 {
color: black;
}
If this wont work, would you mind to share your URL website? with password if its protected. Thanks!
Go to Online Store → You can see 3 dots beside customize button, click on it → Edit code → search “section-main-product.css” → press Ctrl + F to find: “.product__title” → in this you add like this:
.product__title {
color: black;
}
When I ctrl +f “”.product__title", no results were found for this in the code. Is there anywhere else I can put the code in the “section-main-product.css” section?
Ctrl + F and search: .product__title, in this curly braces {}, put color:black; in it. If it does not work, please screenshot that I can see what you put wrong or correct.
Ok! This code worked for the title! What code can I input to change all the text to black? So that all the listings on the wholesale website (2nd Story Goods, $USD amount, title, hope, celebration, etc.) show up in black across the whole website?