All things Shopify and commerce
We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more
Hello,
I am using the Shopify Dawn theme 10.0.0 version. I have a code added to my base.css file to make my "ADD TO CART" button bigger and green as shown in attached screenshot (code below).Now I would like to have this same font size and color added to my "Proceed to Checkout" button that pops up whenever the "ADD TO CART" button is clicked as shown in attached screenshot. So How do I change this? Also How do I make the same font and color change to my "Continue to Shopping" button as shown in attached screenshot? I would greatly appreciate your responses, thanks!
product-form [type="submit"] {
color: #FFFFFF !important;
background-color: #58b42d !important; font-size:21px;
font-weight: bolder !important;
}
Solved! Go to the solution
This is an accepted solution.
For anyone facing this issue, I was able to resolve it myself using ChatGPT. The solution is as below from ChatGPT, it worked!
Hi @Ecomseller2025
Follow these Steps:
1) Go to Online Store
2) Edit Code
3) Find base.css file
4) Add the following code at the end of base.css
<style>
button#CartDrawer-Checkout {
color: #FFFFFF !important;
background-color: #58b42d !important;
font-size:21px;
font-weight: bolder !important;
}
</style>
If you require further help to optimize your store, please don’t hesitate to reach out. If you find this information useful, a Like would be greatly appreciated. And if this solves the problem, please Mark it as Solution!
Best Regards,
Makka
Thank you for your response. I tried the steps but it didn't work, the color of the "PROCEDD TO CHECKOUT" button still shows up as below. Please advise.
Can you provide link to the store?
sorry I can't, due to personal reasons.
This is an accepted solution.
For anyone facing this issue, I was able to resolve it myself using ChatGPT. The solution is as below from ChatGPT, it worked!