All things Shopify and commerce
We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more
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 </body> on theme.liquid
<style>
.collection .full-unstyled-link, .collection .price {
color: #000 !important;
}
</style>
RESULT:
my reply helpful? Click Like to let me know!
your question answered? Mark it as an Accepted Solution.
.card__information * {
color: black !important;
}
Hi @AcesPetSuplies
Please try to put this code in theme.liquid before body closing tag </body> and check
<style>
.card__information * {
color: #000 !important;
}
</style>
Thanks!