Feature Collection Text Color on home page in Ride Theme

Hi,

I am trying to change the background to (grey - EEEEEE) and text color to Black only on the featured collection section of my home page of my store www.autofinesseusa.shop but can’t see how to not impact other sections of the store, can anyone help?

Thanks.

Hello @SteveP78

Add this CSS at the bottom of Online Store->Theme->Edit code->Assets->base.css

section#shopify-section-template--17252019470621__featured_collection {
   background: #eeeeee;
   margin-top: 0;
   padding-top: 52px;
}
section#shopify-section-template--17252019470621__featured_collection > .gradient {
   background: #eeeeee;
   color: #000000;
}
section#shopify-section-template--17252019470621__featured_collection > .gradient h2.title.h2 {
   color: #000000;
}

Output:

If you find our reply helpful, please hit Like and Mark it as a Solution.

An award-winning North American Shopify Development Agency That Delivers Powerful Results, Innovation, and Secure Digital Transformation.

1 Like

Thank you for the help and quick reply!