Problem with color of the order
-
Hello, on the receipt for my order, the text is blue and I would like it to be white to be readable, what can I do?
THANKS
Attachments:
You must be
logged in to view attached files.
Hello,
Try to add the following custom css code in Theme Settings > Custom CSS:
/* Make product prices on checkout white */
.woocommerce-checkout-review-order-table .cart_item .amount,
.woocommerce-checkout-review-order-table .cart_item .product-total .amount,
.woocommerce-checkout-review-order-table .cart_item .product-name .amount,
.woocommerce-checkout-review-order-table tfoot .amount,
.woocommerce-checkout-review-order-table tfoot .product-subtotal .amount,
.woocommerce-checkout-review-order-table tfoot .product-total .amount {
color: #fff !important;
}
:root :is(.woocommerce-form-coupon-toggle,.woocommerce-form-login-toggle)>div :is(.showlogin,.showcoupon) {
color: #fff !important;
}
Best Regards