How to remove the colour background on my product grid

Topic summary

A user seeks help removing a green background from their product grid that appears behind product titles, prices, and “Add to Cart” buttons.

Two solutions provided:

  1. theme.liquid modification - Add custom CSS code above the </body> tag in the theme.liquid file to override background styling

  2. base.css modification - Insert CSS code at the bottom of base.css file:

    • Sets .card-wrapper .card.card--media background to transparent
    • Changes price text color to black (#000000)

Note: Both responses contain reversed/garbled text in parts, but include code snippets and screenshots showing the expected result after applying changes.

Status: Solutions offered but no confirmation yet from the original poster on whether either approach resolved the issue.

Summarized with AI on November 4. AI used: claude-sonnet-4-5-20250929.

Hi everyone! I’m trying to remove the green background from my product grid where the product title, price, and “Add to Cart” button are located. Any assistance would be greatly appreciated!

Website: Monmarceau.com
Thank you so much!

Hey @MonMatelier

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


RESULT:

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

Best Regards,
Moeed

@MonMatelier Please follow below steps to remove the color background on the product grid. Let us know whether it is helpful for you.

  1. From admin, go to “Online Store” → “Themes”.
  2. Click “Edit code” button from the current theme.
  3. Go to “base.css” file and paste below code at the bottom of the file.
.card-wrapper .card.card--media {
    background: transparent;
}
.card-wrapper .card.card--media .full-unstyled-link, .card-wrapper .price .price__container .price-item.price-item--regular {
    color: #000000;
}

Result will be like,

Please provide your support by click “Like” and “Accepted” if our solution works for you. Thanks for your support.