Can someone help change my add to cart button colour to red?

https://techfirmstore.com

Hi

It seems like my add to cart button has lost it’s colour

Can someone please change it to red, it was done before and the code it still in the Theme.Liquid file but it’s disappeared

Please change the background to #FD022F and the text to #FFFFFF, same as the ‘Add this to cart’ CTA underneath

Can this be done for all products please

Thanks

Hey @Kris-Tech

Follow these Steps:

  1. Go to Online Store

  2. Edit Code

  3. Find theme.liquid file

  4. Add the following code in the bottom of the file above tag


If I managed to help you then, don’t forget to Like it and Mark it as Solution!

Best Regards,
Moeed

1 Like

Hello @Kris-Tech

You can try this code: it will be helpful to you

Go to the Online Store->Theme->Edit code->Assets->theme.css>Add this code at the bottom.

button.btn.btn--full.add-to-cart.btn--secondary {
    background: #FD022F !important;
    color: #FFFFFF !important;
}

Worked perfectly, thank you!