Item and add to cart button colors

Hello,

I was able to make my items transparent on the home page but when I click the specific product or even have it in the check out, the button and image have black background. How am I able to change both to different colors or transparent?

Website

1 Like

Hi @JonathanTiki

Do you want all transparent? But youl lhave a problem in your pop cart.

Check this one.

  1. From you Admin page, go to Online Store > Themes
  2. Select the theme you want to edit
  3. Under the Asset folder, open the main.css(base.css, style.css or theme.css)
  4. Then place the code below at the very bottom of the file.
.global-media-settings {
    background: transparent;
}
.button, .shopify-challenge__button, .customer button {
    background: transparent;
}

this is perfect, thank you!!

Welcome, would you mind to add likes. Thanks!