• Resolved abstractwalls

    (@abstractwalls)


    Hi,

    I’m trying to change the colour of the green tick icon that appears when a product is added to the cart.

    I’ve managed to change the colour of the green border using: `.woocommerce-message {
    border-color: #000000;
    }` but I can’t seem to figure out how to change the colour of the tick icon.

    I’m able to change the background and text colors just not the tick.

    Any help would be great!

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Support RK a11n

    (@riaanknoetze)

    Hi there,

    The colour of that icon can be changed using the following custom CSS:

    
    .woocommerce-message::before {
        color: red;
    }
    

    Of course, the red part is something that you can replace with your ow colour. If it’s black, that’ll be #000.

    Thread Starter abstractwalls

    (@abstractwalls)

    That’s perfect, thanks!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Change color of green tick on Woocommerce info bars’ is closed to new replies.