hi
my add to cart text is white and it not clear so that i want to change it to black
my site
want to change all add to cart text as stickey add to cart and Drawer Cart button
hi
my add to cart text is white and it not clear so that i want to change it to black
my site
want to change all add to cart text as stickey add to cart and Drawer Cart button
Hi,
To change ADD TO CART button colour you need to go to Online Store → Themes → Edit Code and find the file called theme.css or something similar. It is supposed to be a general css file that applies styles to your theme.
Add this bit to the file:
.t4s-btn-color-primary{
--btn-color: #fff;
--btn-background: #000;
--btn-border: #000;
--btn-color-hover: #fff;
--btn-background-hover: #292929;
--btn-border-hover: #292929;
}
This is a code with black button & white text. You can change the colours as you wish.
Hi,
Went on your website and looks like you have it all figured out. Let me know if there is anything else you might need a help with.
If I helped you, you can mark my message as an acceptable solution.
stickey cart text not changed it still white
This is the code you need to insert, but set up the colours you want first.
.t4s-btn-color-dark{
--btn-color: #YOUCOLOUR;
--btn-background: #YOUCOLOUR;
--btn-border: #YOUCOLOUR;
--btn-color-hover: #YOUCOLOUR;
--btn-background-hover: #YOUCOLOUR;
--btn-border-hover: #YOUCOLOUR;
}
will try it