GG9
1
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
@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
1 Like
@GG9 ,
Please Add this css to your CSS file
.section-template--15393943060635__featured_collection-padding .card-information {
display: none;
}
1 Like
Happy to help you with this issue
Please follow the
.section-template--15393943060635__featured_collection-padding .card-information {
display: none;
}
below steps
- Step 1: Go to your Themes page. Navigate to Online Store > Themes. …
- Step 2: Click Edit code. In the Actions dropdown menu, click on Edit code to get to the code editor.
- Step 3: Find the Assets folder for CSS files and edit the base.css file.
Add the below style to the base.css file at the end
2 Likes
GG9
5