MaBa
1
Hi community,
I am trying to change the background, border and text color of the add to cart button.
I have added the following code to the base.css file:
.quick-add__submit {
background: #F37FB9;
box-sizing: none !important;
}
and I managed to change the background color but not the border. Also I have not found how to change the font color.
Any help would be much appreciated.
Uhrick
2
hello, Maba, try those:
.quick-add__submit {
background: #F37FB9;
border-color: #F37FB9;
/* color of text */
color: #fff;
}
MaBa
3
Thanks for the quick reply.
The text color changed but the border color is still black. What do you think?
Uhrick
4
try addings the !important at the end, like
border-color: #fff !important;
MaBa
5
no change. I posted a screenshot of the style section in the browser
Uhrick
6
can you send me the link to the website?
Uhrick
8
add this new rule after the previous:
.quick-add__submit::after {
box-shadow: none;
}