Hide a price on a certain featured collection

Hi! I am working with editions theme on shopify. I have a two featured collections and wish to only show the product prices on only one of them. I am very new to CSS but understand that this is the key since i do not have to option to turn off “show prices” on the product grid or theme settings.

What CSS should I write to hide the prices under the product pictures on that certain featured collection?

I appreciate all help I could get :slightly_smiling_face:

Hi @Karinmanos ,

Paste the following CSS in the featured collections where you want to hide the price:

.product-item__price {
  display: none;
}

Watch the attached video to see how to paste the CSS code in a specific section. I hope this will help :slightly_smiling_face:

Thank you very much!