Take your website
To the next level
Discover our newly launched customization services and elevate your web projects to new heights.
Delegate tasks, save time, and unlock the power of professional WordPress outsourcing.

Okay
  Public Ticket #1845266
Changing color of 2 items
Closed

Comments

  •  1
    Jennifer Reinfeld started the conversation

    Hello,

    Can you please let me know how I can:

    • change the color of the row in the shopping cart (that has the headings: Product, Price, Quantity, Total.)
    • change the color of the "Update Cart" button.

    I am attaching a screen shot that has red arrows pointing to the items described above that I would like to figure out how to change.

    Thank you for your help.

    Jennifer

  •  7,095
    Oliver replied

    HI!

    pls. use following css:

    .woocommerce .shop_table thead tr th {
        background: #000;
    }
    .woocommerce .woocommerce-cart-form .actions .submit-buttons .update-cart button {
        background: #ccc;
        color: #000;
    }
    .woocommerce .woocommerce-cart-form .actions .submit-buttons .update-cart button:hover {
        border-color: #ccc;
        background-color: #555;
        color: #eee;
    }

     

    6707465710.png

    Please note if you comment on your ticket before we reply, your ticket will be pushed down of the tickets list. 

    Regards, Oliver

  •  1
    Jennifer Reinfeld replied

    Thank you so much! I really appreciate your help.

    I ended up tweaking it a little, and it works great. In case anyone is looking for how to do this, this code is what worked for me:

    .woocommerce .woocommerce-cart-form .actions .submit-buttons .update-cart button {
        background-color: #48B5FE !important;
        color: #ffffff;
    }
    .woocommerce .woocommerce-cart-form .actions .submit-buttons .update-cart button:hover {
        border-color: #48B5FE !important;
        background-color: #ffffff !important;
        color: #48b5fe !important;
    }


    Best wishes,

    Jennifer

  •  7,095
    Oliver replied

    Thank you for the info!

    Please note if you comment on your ticket before we reply, your ticket will be pushed down of the tickets list. 

    Regards, Oliver