Archived topic
Order received Billing address and Shipping address colour change
3 replies · Started by _blank on October 14, 2020
Hi There,
Is it possible to change the colour of “Billing address” and “Shipping address” text to red #9C1030. Without changing the theme settings for the normal headings. Please see image link below.
This is the CSS we have so far.
/* Order received red heading */
.woocommerce-order-received h1.entry-title,
.woocommerce-order-received h2.woocommerce-order-details__title {
color: #9C1030;
}
Many Thanks
Scott
Hi there,
try:
/* Order received red heading */
.woocommerce-order-received h1.entry-title,
.woocommerce-order-received h2.woocommerce-order-details__title,
.woocommerce-order-received h2 {
color: #9C1030 !important;
}
Hi David,
That worked thanks.
Scott
Awesome ! Glad to hear that