• I have a Simple Custom CSS Plugin, and used it to change the color of the checkout buttons and hover colors as well no problem. I used this code:

    .woocommerce #content input.button.alt, .woocommerce #respond input#submit.alt, .woocommerce a.button.alt, .woocommerce button.button.alt, .woocommerce input.button.alt, .woocommerce-page #content input.button.alt, .woocommerce-page #respond input#submit.alt, .woocommerce-page a.button.alt, .woocommerce-page button.button.alt, .woocommerce-page input.button.alt {
    background: #1eb1fd;
    color: #fff;
    border-color: #1EB1FD;
    }

    .woocommerce #content input.button.alt:hover, .woocommerce #respond input#submit.alt:hover, .woocommerce a.button.alt:hover, .woocommerce button.button.alt:hover, .woocommerce input.button.alt:hover, .woocommerce-page #content input.button.alt:hover, .woocommerce-page #respond input#submit.alt:hover, .woocommerce-page a.button.alt:hover, .woocommerce-page button.button.alt:hover, .woocommerce-page input.button.alt:hover {
    background: #1EB1FD;
    color: #000;
    border-color: #1EB1FD;

    I need to change the color of the “Return To Shop” button on the cart page when the shopping cart is empty to the same colors. What would the Simple Custom CSS Coding be so I can paste it in, and change the colors.

    Thank You,
    Mikey P

  • The topic ‘WooCommerce "Return To Shop" Button on Empty Cart Page’ is closed to new replies.