Okay
  Public Ticket #1603497
Tags and notification customization
Closed

Comments

  • Aissam34 started the conversation

    Hi there,

    I would like to know how to change the color of :

    1- SALE and Out of Stock Tags (Screenshot_13 and Screenshot_14)

    2- Notification or Error Message (Screenshot_12)

    Regards,

  • [deleted] replied

    Hi there,

    1— Please add the code below to your Custom CSS area:

    .woocommerce .product .onsale {
        background: green;
    }
    .woocommerce .onsale.oos {
        background: red !important;
    }

    2— Custom CSS again:

    .woocommerce-info, .woocommerce-message, .woocommerce-error {
        background-color: #53f794;
        -webkit-box-shadow: 0px 0px 0px 6px #53f794
        box-shadow: 0px 0px 0px 6px #53f794;
    }

    Have a nice week!