How Do I remove the titles and price from by products on the Brooklyn theme?

I would like to remove the title of the product and the price of it. I would just like it to show the product photo. How do I do this?

hi @tuckermalmquist can you please share the Store URL to give you the exact solution!

Regards

Ecommpremium

https://luckydazeclothing.com/?key=baa9162ba3f8c55cbaf9897368bc1cf383e4f4cfd023b81a8997df01b24c290b

https://luckydazeclothing.com/?key=baa9162ba3f8c55cbaf9897368bc1cf383e4f4cfd023b81a8997df01b24c290b

Hi go to theme.scss.liquid file and paste this code at the bottom let me know if this works for you.

.grid-product__price .grid-product__title .long-dash {
display:none !important;
}

@tuckermalmquist

pasted it at the bottom and still did not work.

@tuckermalmquist Please try this if still doesn’t work I will look deeply into thi

Regards

.grid-product__price.grid-product__title.long-dash {
display:none !important;
}

Or try this @tuckermalmquist

.grid-product__price{
display:none !important}
 .grid-product__title{
display:none !important
}
 .long-dash {
display:none !important;
}

that did it thank you