Hi, how can I change the color and make the Checkout button text bold on my cart page checkout button? I’m using Dawn Theme 7.0.1
From this

to this (disregard the size difference)

A user seeks to customize the checkout button on their cart page in Dawn Theme 7.0.1, specifically wanting to change the button color and make the text bold.
Solution Provided:
base.css file (Online Store > Themes > Edit code > Assets)button#checkout {
font-weight: bold;
background: green;
}
Follow-up Issue:
After implementing the initial solution, a black outline appeared on the button.
Additional Fix:
To remove the unwanted outline, add CSS targeting the button’s after pseudo-element to eliminate the box-shadow.
The discussion includes before/after screenshots showing the visual changes. The issue appears resolved with both customizations successfully applied.
Hi, how can I change the color and make the Checkout button text bold on my cart page checkout button? I’m using Dawn Theme 7.0.1
From this

to this (disregard the size difference)

button#checkout {
font-weight: bold;
background: green;
}
Add this css at the bottom of Online Store->Theme->Edit code->Assets->base.scss.liquid
.button:after, .shopify-challenge__button:after, .customer button:after, .shopify-payment-button__button--unbranded:after {
box-shadow: none;
}
use this css