The description of the products in my collection file arent showing in a dark enough color

Hello, I am using the featured collection section and no matter what I do it shows the product title, description and price either in a very light grey text so you cant see it on the background or doesn’t show up at all. I tried playing with the theme colors but nothing worked. Website is www.acespetsupplies.com

Hello @AcesPetSuplies

You can add code by following these steps

  1. Go to Online Store → Theme → Edit code.

  2. Open your theme.liquid file

  3. Paste the below code before on theme.liquid

.collection .full-unstyled-link, .collection .price { color: #000 !important; }

RESULT:

my reply helpful? Click Like to let me know!
your question answered? Mark it as an Accepted Solution.

HI @AcesPetSuplies

To complete your requests, please follow these steps:

  1. Go to Shopify Admin > Online Store > Theme > Customize > Theme Settings > Custom CSS https://prnt.sc/i8ljAMlHJUKl
  2. Paste the code provided into the Custom CSS section.
.card__information * {
    color: black !important;
}

Here is the result: https://prnt.sc/eXaEYDXELh5U

I hope this helps

Best,

Daisy

Hi @AcesPetSuplies
Please try to put this code in theme.liquid before body closing tag and check


Thanks!