i want to change colour of theis size chart buttuon to red.. make it semi-bold
URL: https://groovystreet.in/products/multi-pockets-side-zipper-black-cargo-pants
i want to change colour of theis size chart buttuon to red.. make it semi-bold
URL: https://groovystreet.in/products/multi-pockets-side-zipper-black-cargo-pants
Hello @Emiway
Go to online store ---------> themes --------------> actions ------> edit code------->theme.css
at the end of the file and save.
.block-swatch {
background: #f83a3a !important;
font-weight: 500;
}
rsult
If this was helpful, hit the like button and accept the solution.
Thanks
Hi @Emiway ,
To make this happen you need to add a small css code in your theme file. for that follow below steps,
From Shopify backend
Online Store → Themes → “…” → Edit Code
In Edit Code → “assets” directory → “theme.css” file.
Open the theme.css file and add the following code at the end of the file:
.block-swatch {
background: red!important;
color: white!important;
font-weight: 600!important;
}
Result:
I hope this helps! If it does, please like it and mark it as a solution!
If you need further assistance, feel free to reach out!
Regards,
Sweans
i want to change size chart button which i have marked in image
i want to change size chart button which i have marked in image
Go to online store ---------> themes --------------> actions ------> edit code------->theme.css
at the end of the file and save.
Go to online store ---------> themes --------------> actions ------> edit code------->theme.css
at the end of the file and save.
.text-subdued {
color: red !important;
font-weight: 600;
}
result
Thanks
where to use this?
Go to online store ---------> themes --------------> actions ------> edit code------->theme.css
at the end of the file and save.
Hi @Emiway ,
If my reply is helpful, kindly click like and mark it as an accepted solution.
Thanks!