Is there a way to change this button color? It’s in the cart drawer.
Background color and text color.
Thanks!
Is there a way to change this button color? It’s in the cart drawer.
Background color and text color.
Thanks!
Hi @Ell_Soll , go to edit code > snippets > cart-drawer.liquid and look for this:
{{ 'general.continue_shopping' | t }}
Replace it with:
{{ 'general.continue_shopping' | t }}
Then go to assets > base.css and add this:
.continue-shopping-btn{
background-color:blue;
color:#fff;
}
Replace ‘blue’ and ‘#fff’ with the colours you’d like. ![]()
.drawer__inner a.button {
background: #121212;
color: #fa96d4;
}
Hello There,
button.link.button-label {
background-color: #000;
color: #ffffff;
padding: 10px;
}
Hello @Ell_Soll
.cart-drawer__empty-content > a.button {
background: #00ff00;
color: #ffffff;
}
Please hit Like and Mark it as a Solution if you find our reply helpful.
An award-winning North American Shopify Development Agency That Delivers Powerful Results, Innovation, and Secure Digital Transformation.
Thank you all!
Thank you for your response. It’s good to know that it’s worked for you. Kindly feel free to get back to me if you need any further assistance.