Change button color for "Featured Collection" in Cart Section

What do I need to do to make the add to cart buttons the same color at the checkout button in the cart section? And is it possible to make the featured section smaller?

Thanks for any help!

@cvette Can you please share this page link?

Hello @cvette ,

Edit theme.liquid search for now just before to it add this code

{% if template == 'cart' %}

{% endif %}

Regards
Guleria

That doesn’t seem to work

Your Shopping Cart – Crystal Lea Jewelry

Please use it in same place

{% if template contains 'cart' %}
  
{% endif %}

@cvette please add this css to the very end of your base.css file and check,
Shopify Admin β†’ Online Store ->Theme β†’ Edit code β†’ base.css

#shopify-section-template--18009807683684__featured_collection_djQnT8 .quick-add__submit {
    background: #6a6a6a;    color: #fff;    box-shadow: none;}

#shopify-section-template--18009807683684__featured_collection_djQnT8 .quick-add__submit:after{box-shadow: none !important;}
1 Like

Yes! Thank you!

Is there a way to adjust that how sections size? I would like to make it a bit smaller

@cvette width of the section or want to reduce those images size?

Image size

So the height of the featured section …

@cvette please add this css too and check

@media screen and (min-width:750px){
#shopify-section-template--18009807683684__featured_collection_djQnT8 .card__inner{height: 70%; width: 70%; left: 50%;    transform: translate(-50%);}
}
1 Like

PERFECT!!! Thank you!

I’ve got one more for you. What can I add to make this heading centered?