Shopify themes, liquid, logos, and UX
We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more
How do I remove the price tag from featured collections only in Dawn?
I was able to remove all price tags from collections etc. by using
.collection .card-information .price{
display: none !important;
}
But I'd like to only remove the price tags from featured collections. Is that possible?
URL to my site: https://lhrn4x5dc5v6xk9n-57645498523.shopifypreview.com
Solved! Go to the solution
This is an accepted solution.
@GG9 ,
.section-template--15393943060635__featured_collection-padding .card-information {
display: none;
}
Add this css at the bottom of Online Store->Theme->Edit code->Assets->owl.theme.default.scss.liquid
This is an accepted solution.
@GG9 ,
.section-template--15393943060635__featured_collection-padding .card-information {
display: none;
}
Add this css at the bottom of Online Store->Theme->Edit code->Assets->owl.theme.default.scss.liquid
@GG9 ,
Please Add this css to your CSS file
.section-template--15393943060635__featured_collection-padding .card-information {
display: none;
}
Happy to help you with this issue
Please follow the
.section-template--15393943060635__featured_collection-padding .card-information {
display: none;
}
below steps
Thanks everyone! This worked great. @oscprofessional @infoatcodelab7 @SagarSukhanandi