Shopify themes, liquid, logos, and UX
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
I have to edit view cart and checkout buttons.
1.make first letter of view and checkout to small case.
2.change colour theme to
background: FAF8F1
text: D94F16
solid button background: FAF8F1
solid button label: D94F16
outline button: BC5631
URL :
shopcheri.co
Solved! Go to the solution
This is an accepted solution.
HI @shopcheri
Please add this code to Custom CSS in Online Store > Themes > Customize > Theme settings
cart-notification #cart-notification-button {
text-transform: lowercase;
}
.cart-notification.active {
background: #FAF8F1;
}
cart-notification #cart-notification-button,
cart-notification #cart-notification-form button {
background: #FAF8F1;
color: #d94f16;
}
cart-notification #cart-notification-button:after,
cart-notification #cart-notification-form button:after {
box-shadow: 0 0 0 calc(var(--buttons-border-width) + var(--border-offset)) #bc5631, 0 0 0 var(--buttons-border-width) rgba(var(--color-button), var(--alpha-button-background)) !important;
}
- Helpful? Like & Accept solution!
- Ryviu - Product Reviews & QA app: Collect customer reviews, import reviews from AliExpress, Amazon, Etsy, Walmart, Dhgate and CSV.
- Lookfy Gallery: Lookbook Image - Gain customers with photo gallery, video & shoppable image.
- Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- Enjoy 1 month of Shopify for $1. Sign up now.
Hi ,@shopcheri
please share your store URL for exact solution code OR Below code is my observation according to the dawn theme.
you can add this css code to your base.css file and see the results.
Online Store > Edit Code > Assets > base.css file
.cart-notification-wrapper #cart-notification-button {
background-color: #FAF8F1;
color: #D94F16;
border: 1px solid #BC5631;
}
.cart-notification-wrapper #cart-notification-form button {
background-color: #FAF8F1;
color: #D94F16;
}
.cart-notification-wrapper #cart-notification-form button:before,
.cart-notification-wrapper #cart-notification-form button:after {
display:none;
}
Thanks
This is an accepted solution.
HI @shopcheri
Please add this code to Custom CSS in Online Store > Themes > Customize > Theme settings
cart-notification #cart-notification-button {
text-transform: lowercase;
}
.cart-notification.active {
background: #FAF8F1;
}
cart-notification #cart-notification-button,
cart-notification #cart-notification-form button {
background: #FAF8F1;
color: #d94f16;
}
cart-notification #cart-notification-button:after,
cart-notification #cart-notification-form button:after {
box-shadow: 0 0 0 calc(var(--buttons-border-width) + var(--border-offset)) #bc5631, 0 0 0 var(--buttons-border-width) rgba(var(--color-button), var(--alpha-button-background)) !important;
}
- Helpful? Like & Accept solution!
- Ryviu - Product Reviews & QA app: Collect customer reviews, import reviews from AliExpress, Amazon, Etsy, Walmart, Dhgate and CSV.
- Lookfy Gallery: Lookbook Image - Gain customers with photo gallery, video & shoppable image.
- Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- Enjoy 1 month of Shopify for $1. Sign up now.
thankyou. this worked!!
So I just tried the mobile version and it hasn’t worked on that yet.
this is what I’m seeing!
please check!
Hi @shopcheri
1. Go to Online Store -> Theme -> Edit code.
2. Open your theme.css / based.css file and paste the code in the bottom of the file.
.cart-notification.active {
background: #FAF8F1;
}
.cart-notification__links .button {
background: #FAF8F1;
color: #D94F16;
text-transform: lowercase;
}
.button, .shopify-challenge__button, .customer button, button.shopify-payment-button__button--unbranded {
--border-opacity: none;
border: 1px solid #BC5631 !important;
}
.button:after {
--border-opacity: none !important;
border: 1px solid #BC5631;
}
Result:
If my reply is helpful, kindly click like and mark it as an accepted solution.
If you are happy with my help, you can help me buy a COFFEE
Thanks!
Hi @shopcheri
Try this one.
<style>
a#cart-notification-button {
text-transform: lowercase !important;
}
form#cart-notification-form .button--primary {
background-color: #FAF8F1;
text-transform: lowercase !important;
color: #D94F16;
box-shadow: none;
}
form#cart-notification-form .button--primary .color-scheme-5 {
--color-button: none;
}
form#cart-notification-form .button--primary:after,
a#cart-notification-button:after {
box-shadow:
0 0 0 calc(var(--buttons-border-width) + var(--border-offset)) rgba(24, 86, 108, 0),
0 0 0 var(--buttons-border-width) rgba(188, 86, 49, 0.5),
0 4px 6px rgba(188, 86, 49, 0.5);
}
div#cart-notification {
background: #FAF8F1;
}
div#cart-notification * {
color: #D94F16;
}
</style>
Let me know if im missing somwething.
Your Feedback Matters! Please mark the solution and give likes to posts that helped you. Your appreciation fuels our motivation to assist you better!