I’m using the Venture theme and on the front page, there are “Featured Products”. There’s a gray box under the Featured Products font. How do I remove the gray box? I just want white font on the black background.
1 Like
@Schimke , do this to fix it in 20 seconds:
- In your Shopify Admin go to: online store > themes > actions > edit code
- Find Asset > theme.scss.liquid or theme.css and paste this at the bottom of the file:
.collection-card__title{
color: white !important;
background: transparent !important;
}
Kind regards,
Diego
Please add the following code at the bottom of your assets/theme.scss.liquid file.
Show More
.collection-card__title{
Show More
color: white !important;
Show More
background: transparent !important;
Show More
}
Hope this works.
That is literally the exact same solution I suggested…
@diego_ezfy Ah, right on! Thank you so much. That worked perfectly.
Is there a way to change the “View All” wording in that same area?