Okay
  Public Ticket #1008512
Place Order Button
Closed

Comments

  •  2
    tha-plug started the conversation

    Hiw is it possible to change the color of only the place order and add to cart button?

  • [deleted] replied

    Hi there,

    We don't provide support for customizations but i will try to help you this time. Please send us the exact places where those buttons are and I will try to give you the code to change their color.

  •  2
    tha-plug replied

    Thank you very much!

    https://www.tha-plug.com/product/ballin-no-nba/ => the "add to cart" button

    https://www.tha-plug.com/cart/ => "Preceed to Checkout" button

    https://www.tha-plug.com/checkout/ => the "Place Order" button


  • [deleted] replied

    Hi tha-plug,

    Please add the code below to Custom CSS

    .woocommerce .item-info .group_table .button, .woocommerce .item-info form.cart .button {
        background: red !important;
    }
    .woocommerce .item-info .group_table .button:hover, .woocommerce .item-info form.cart .button:hover, .woocommerce .item-info .group_table .button:active, .woocommerce .item-info form.cart .button:active {
        background: green !important;
    }
    .btn-primary, .checkout-button {
        background-color: red !important;
    }
    .btn-primary:hover, .checkout-button:hover {
        background-color: green !important;
        color: #fff !important;
    }