Changing Outline, Button color, and text color - Dawn Theme

The url is: https://gladscollectibles.ca

I need to change the “Sign in”, “Continue Shopping”, and "Buy it Now" button colors (as depicted by the photos attached).

I am hoping to change them to the same as the Add to Cart button in the last photo - blue outline, black fill, and blue text color.

@mercedesyeast ,

  1. In your Shopify Admin go to online store > themes > actions > edit code
  2. Find Asset > base.css and paste this at the bottom of the file:
.customer button, .shopify-payment-button__button, .cart__warnings a.button {
    border: 1px solid #438183 !important;
    color: #438183 !important;
}

Thanks!

@mercedesyeast

form#customer_login button {
    border: 1px Solid #498d8f !important;
    color: #498d8f !important;
}
.cart__warnings a.button {
    color: #498d8f !important;
    border: 1px solid #498d8f !important;
}

Add this code in the bottom of the base.css file

@mercedesyeast

Please add the following CSS code to your assets/base.css bottom of the file.

form#customer_login button {
    border: 1px Solid #498d8f !important;
    color: #498d8f !important;
}
.cart__warnings a.button {
    color: #498d8f !important;
    border: 1px solid #498d8f !important;
}

Thanks!

@infoatcodelab7 Thank you so much! I just noticed that the "Checkout" button needs to be changed as well.


\

What is the code to change that?

@mercedesyeast ,

Add this CSS to your css file

button#checkout {
    border: 1px solid #438183 !important;
    color: #438183 !important;
}

Thank You!

@mercedesyeast

.cart__ctas button{
color:#438183!important;
border:1px solid #438183!important;
}