Okay
  Public Ticket #1441190
Color
Closed

Comments

  • nicofrenchy started the conversation

    I'm going crazy trying to change the color of the elements. Attached image so you can see.
    Thanks for the solution

  • [deleted] replied

    Hi nicofrenchy,

    To change the Main theme color you can go to Laborator > Theme Options > Theme StylingCustom Skin Builder then you can change the Button color area or other areas.

    The green notification area can not be changed on the Custom Skin area because that is a successful message of WooCommerce and it usually has the green color but if you want to change that too.

    Just add the code below to your Custom CSS area:

    .woocommerce-message {
        background-color: red !important;
        -webkit-box-shadow: 0 0 0 6px red !important;
        box-shadow: 0 0 0 6px red !important;
    }

    Have a great day!