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
Hello,
Can anyone help with changing the ''ADD TO BASKET'' button to black and text to white for both desktop and mobile view.
I'm using the dawn theme (15.3.0)
Thanks,
Sam
Solved! Go to the solution
This is an accepted solution.
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.
.quick-add__submit {
background: black !important;
color: white !important;
}
Thanks!
Hi @samr66 , kindly provide your store URL please and if it is password protected, please share the password as well. Thanks
Hi,
it's - thescentedmeltshop.com - password: shop90
hey @samr66 share the URLs of your website plz
Hi @samr66,
kindly provide your store URL please and if it is password protected, please share the password as well. Thanks
Hi,
it's - thescentedmeltshop.com - password: shop90
This is an accepted solution.
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.
.quick-add__submit {
background: black !important;
color: white !important;
}
Thanks!
Thank you it's worked!
is there a way to make it the same on product page to?
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.
.product-form__submit,
.quick-add__submit {
background: black !important;
color: white !important;
}
Thanks!
great, thanks for your help!
<style>
.quick-add__submit {
background-color: black !important;
color: white !important;
}
</style>
hey @samr66 @ dear follow these steps
Go to online store ----> themes ----> go to three Dots ----> edit code ---->find theme.liquid files ----> place the code ---->before the </body> ----->
before the body ----->
if this code work please do not forget to like and mark it solution
Hi samr66,
1. Go to Online Store -> Theme -> Edit code.
2. Open your theme.liquid file
3. In theme.liquid, paste the below code before </head>
<style>
.quick-add__submit {
background-color: #000 !important;
color: #fff !important;
}
</style>