Solved

Changing color of taxes policies on cart page

MarksBcn
Excursionist
43 0 14

Hi, 

Could anyone please help me to change the color of the taxes policy on cart page and product page. I'm currently using Debut theme. The URL is kannuii.es

Captura de pantalla 2021-10-24 184954.jpgCaptura de pantalla 2021-10-24 184809.jpg

 

 

 

 

 

 

 

Many thanks

 

Accepted Solution (1)

Akibhusen
Shopify Partner
715 121 147

This is an accepted solution.

Hi @MarksBcn ,

Please add the below code to your theme.css file. You can find this file in the assets folder of your theme.

 

body .cart__shipping{
color:#ff0000;
}
body .product__policies{
color:#ff0000;
}

 

banned

View solution in original post

Replies 3 (3)

JHKCreate
Shopify Expert
3571 639 916

Hi @MarksBcn 

Please add the following code to your theme.css file at the very end and use any hex value you'd like for the correct output:

 

.product__policies.rte {
    color: #4a1212;
}

.cart__shipping.rte
{
    color: #4a1212;
}

 


Should that help answer your query, we always appreciate liking & marking an as answer to let the community find quality solutions faster. Thanks!


Did we solve your issue? Like & Mark As Solution to help the community
Should you need any direct help: contact@jhkcreate.com

Learn more about us: jhkcreate.com

Akibhusen
Shopify Partner
715 121 147

This is an accepted solution.

Hi @MarksBcn ,

Please add the below code to your theme.css file. You can find this file in the assets folder of your theme.

 

body .cart__shipping{
color:#ff0000;
}
body .product__policies{
color:#ff0000;
}

 

banned
MarksBcn
Excursionist
43 0 14

Hi @Akibhusen , 

Many thanks! It works!