How do i hide product prices in just one of my collections in empire theme?

Trying to hide prices in my art collection. Some of the artists requested it and I’m not able to hide it in the collection page without hiding it in the rest of the collections.

I tried to have professional help with no luck.

HELP!

Hi,

you can first select the collection and write a css. Something like this

{% if collection.handle == 'new-arrivals' %}
  
{% endif %}

thanks for your help saurav9005.

sadly, it doesn’t work and you can still see the price :-(((

Hi
I updated this code. Try this

{% if collection.handle == 'new-arrivals' %} // replace the handle of collection
  {% style%}
  .price {
display:none;
}
  {% endstyle %}

{% endif %}

I copied as it is and also tried it replacing ‘new-arrivals’ for ‘art’ (the name of the collection.

not working either.