Site logo

Archived topic

Checkout Text colour for - Deliver to a different address?

3 replies · Started by _blank on October 22, 2020

Viewing posts 1–4 of 4

Checkout Text colour for - Deliver to a different address?

Is it possible to change the colour of “Deliver to a different address?” text to red #9C1030. Without changing the theme settings for the normal headings. Please see image link below.

We’ve got this CSS from previous ticket.

/*Basket & Checkout */
.woocommerce-order-received h1.entry-title,
.woocommerce-order-received h2.woocommerce-order-details__title,
.woocommerce-cart h1.entry-title,
.woocommerce-cart h2,
.woocommerce-checkout h1.entry-title,
.woocommerce-checkout h3:not(#ship-to-different-address) {
color: #9C1030;
}

Many Thanks
Scott

Hi there,

try this CSS:

#ship-to-different-address-checkbox + span {
    color: #9C1030;
}

Or you can just include the selector in your current CSS.
ie. this after the last selector:

#ship-to-different-address-checkbox + span

Hi David,

That worked thanks.
Scott

Glad to hear that!

This archived topic is closed to new replies.