A user wants to change the grey background box containing product names and prices on their collection page to white, or remove it entirely to show just text.
Multiple Solutions Provided:
Several support teams offered CSS-based solutions with similar approaches:
- Primary method: Add custom CSS code to the
theme.liquid file before the </head> or </body> tag
- Alternative method: Add CSS to the main stylesheet (
main.css, base.css, style.css, or theme.css) at the bottom
Key CSS code pattern:
.card.card--card.card--media.color-scheme-2.gradient {
background: transparent !important;
}
or
.card--card.card--media>.card__content {
background: #fff;
}
Steps:
- Navigate to Admin → Online Store → Themes → Edit code
- Locate
theme.liquid or the main CSS file
- Insert the provided CSS code
- Save changes
All responders included screenshots showing the implementation steps and expected results. The discussion remains open pending confirmation from the original poster.