kamm0
July 5, 2023, 8:24am
1
I want to change the colors of 2 of the buttons in my theme
I am using dawn theme version 10.0
My website is householdpoint.pk
below I have attached 2 screenshots so you can see waht exaxtly I want to do
I want the colour to be in black so it can match my theme
Thanks a lot in advance
1 Like
Hello There,
In your Shopify Admin go to online store > themes > actions > edit code
Find Asset > base.css and paste this at the bottom of the file:
.cart-count-bubble {
background-color: #000!important;
}
button#checkout {
background-color: #000!important;
color: #fff!important;
}
Hello @kamm0
You can try this code: it will be helpful to you
Go to the Online Store->Theme->Edit code->Assets->base.css>Add this code at the bottom.
svg.icon.icon-cart {
color: #000 !improtant;
}
.cart-count-bubble {
background: #000 !improtant;
}
button.button.button--primary.button--full-width {
background: #000 !improtant;
}
kamm0
July 5, 2023, 3:36pm
4
Its not working bro, I want Black color with white text inside
kamm0
July 5, 2023, 3:48pm
5
Thanks dear, Ur code has solved one issue but still in checkout button is still grey ( I want black color button with white text inside, Can you please advise anything for that as well
for Your reference I am attaching another screenshot of my cart settings, its Cart type, Popup notification style
Hello @kamm0
You can try this code: it will be helpful to you
Go to the Online Store->Theme->Edit code->Assets->base.css>Add this code at the bottom.
svg.icon.icon-cart {
color: #000 !important;
}
.cart-count-bubble {
background: #000 !important;
}
button.button.button--primary.button--full-width {
background: #000 !important;
}