Hide price from featured collection homepage - dawn theme

Hi,

I have this website

https://theblankruby.com/

I want to hide from featured collection on home page the price, how can I do this?

Thank you

Go to Online store → Themes → Edit code → collection template

look for

and change to

then in your css add this

.hidden{

display: none;

}

alternatively you can just comment it out by adding. {% comment %} {% endcomment %} around it.

if you are unsure how to do this please don’t hesitate to let me know.

Hi,

I went to

Online store → Themes → Edit code → templates > template-collection.css

and I do not have

Am I in the wrong file?

@urbantis go to Assets > base.css and add this css at bottom of file

#Slider-template--14390295691315__164667311475222869 .card-information {
    display: none;
}