Add to cart button style change - theme dawn

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.

hello, Maba, try those:

.quick-add__submit {
background: #F37FB9;
border-color: #F37FB9;
/* color of text */
color: #fff;
}

Thanks for the quick reply.

The text color changed but the border color is still black. What do you think?

try addings the !important at the end, like

border-color: #fff !important;

no change. I posted a screenshot of the style section in the browser

can you send me the link to the website?

womanly.se

add this new rule after the previous:

.quick-add__submit::after {
box-shadow: none;
}

Great…it works!!!