How to change color of Listing from Green to Black

Hi everyone!

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?

1 Like

Hi Alesa1,

Can you send me a link of your website?

Yes! https://www.2ndstorygoods.com/pages/wholesale

Hi @allie24 ,

Try this one.

  1. From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
  2. Find the theme that you want to edit and click on “Actions” and then “Edit code”.
  3. 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:
  4. 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!

What site you want to edit?

I just search that name and see the text is black already.

I want to edit the wholesale website!

Oh, the wholesale website is password protected I think you’re on the retail website!

https://wholesale.2ndstorygoods.com/

Can you see it now?

1 Like

Do you want to change the color for whole font of the website? Or only the product title? The code I provide is only for the whole product title.

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;
}

remember to save the file after you done!

Just the product title: “Banana Paper Thinking of you Cards (4 pack)”!

I will try this out! Thanks so much!

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?

Nothing changed when I tried that code! The URL is https://wholesale.2ndstorygoods.com/

1 Like

you just search for product__title, please do not search “.product__title”, just search .product__title

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.

Yeah, because that is just from demo store in Dawn. Try this one again.

.product__info-wrapper.grid__item h1 {
    color: black;
}

Result:

This will change the other Product titles also.

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?

1 Like

That what im asking you one of my comment above :index_pointing_up: :laughing: , Yes we can do that if we can change all in black? Try this one.

body.gradient * {
    color: black;
}

Result: