This topic has 8 replies, 2 voices, and was last updated 7 years, 4 months ago ago by Amzy Leel
I need to change the button colors for the “Proceed To Checkout” button on the cart page and the “Place Order” button on the checkout page. Right now they are transparent and can’t be seen. How can I change their background and text color?
put following css in,
8theme options >> styling >> custom css >> global custom css
.checkout-button { background-color: #000; border-color: #000;} /* background color and button border */
.checkout-button { color: #fff; } /* button text color */
change the color code to the color you want
I have put that code in the global css fields but it is not changing the way the button looks on the cart or checkout page
Hello,
put ‘important’ to the css rules.
so use this code
.checkout-button { background-color: #000 !important; border-color: #000 !important;} /* background color and button border */
.checkout-button { color: #fff !important; } /* button text color */
Thank you. That fixed the color of the button on the cart page. How can I change the color of the button on the checkout page?
use this,
.form-row.place-order input[type=submit] { background-color: #000 !important; border-color: #000 !important;}
Thank you!
You are welcome.
Do not hesitate to ask if you ave any other questions (in a new post / topic)
Regards,
You must be logged in to reply to this topic.Log in/Sign up