How to change text color on an Expanse Theme product page?

Hi guys!

I want to change the colour of Text on product page. Am using Expanse Theme. How do I go about it?

Hello @Eze_Paul :waving_hand:

Inside Shopify Admin, you can go to Edit theme code, open file base.css and add this code at the bottom

.js-product-inventory-data + .product-block {
    color: #FF0000;
}

The result

Make sure to change the color value as you need.

1 Like

Thank you soo much, it worked perfectly.

I also want to change the colour too. Please also help. Its ‘’ Sold Out’’ I replaced the word.

I’m checking your page now but not see that badge. Can you send me the above page url?

https://furnishmaxi.se/collections/ny-produkt

Check this collection, not all product has the badge.

Thank you.

You can change its color by adding this code

.grid-product__tag {
    color: #FF0000;
}

Make sure to change the color value as you need.

Hi, it worked but it was on the sales tag, I want it be on ‘‘Sold Out’’ tag.( On The Way)

Thanks.

Hello @Eze_Paul

Try this code

.grid-product__tag--sold-out {
    color: #FF0000 !important;
}
1 Like

Thanks :blush: