How to change color of "add to cart" button in Effortless theme

On my home page and product pages the button color is the same as the background. There is no border and the text is white and does not show up. I have searched the community and tried to apply “fixes” that I have found here and none of them have worked. My theme is Effortless. I can change the background color but that changes the button color also, which is not helpful. I at least need to be able to change the text to black. Having a border would be helpful also.

Thanks.

Hello @TerisaKay ,

Please share the store URL

Thanks

Follow these steps:

  1. Go to Online Store → Theme → Edit code

  2. Open your base.css file and paste the following code below:

.add-to-cart-btn {
    color: #000 !important;
    border: solid 1px #000;
}

Thanks

Thank you! That helped.