How do I remove the descriptions from collection page on express theme

I have tried a few options that didn’t work im using express theme and want to just show the title and price and photo no descriptions on the collections pages my site is www.sweetstylesboutique.com the pass is construction2021 thanks everyone

1 Like

Add this code to the bottom of theme.min.css

.product-card__description-wrapper {
  display: none;
}

Result:

@sweetstylesbtq

Please add the following code at the bottom of your assets/theme.min.css file.

#shopify-section-collection-template .product-card__description-wrapper {
    display: none;
}

Hope this works.

Thanks!

Awesome thank you so much!!

1 Like

Excellent, I’m glad the problem is resolved!