Hi,
how can I change the colour of my tax text on the product page?

also on the shop site, but there it should be white

any ideas?
Hi,
how can I change the colour of my tax text on the product page?

also on the shop site, but there it should be white

any ideas?
Hi there,
I have tried checking your site but I don’t see any links where I can navigate to the shop page.
Would you mind providing the direct link to the pages so that we can check it and provide you with the CSS code?
Thank you.
Hey @nikolaus.kemetner,
I’d first wanted to point out that those elements does not seem to look like they’re part of the theme. If you look at our demo, only the Price is included in the display.

Looks like you’re using a third party plugin for this or a custom code. Unless I’m missing something, please note that we do not have support for third party additions.
I’ll give you some guidance now but please note that we could not continue on providing you with customizations as that is outside the scope of our support. Please see our Terms.
Regarding the first screenshot, it’s caused by your custom CSS. I see it’s to turn the price suffix white in your shop but it also affects the single product.
.woocommerce .woocommerce-price-suffix {
color: #ffffff !important;
}

So, you also would need to add this CSS
.single .woocommerce-price-suffix {
color: #000 !important;
}

For the second screenshot, please add this code in Theme Options > CSS
.subscription-details {
color: white;
}

Hope that helps and thank you for understanding.
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.