Yes please replace previous css with this one
@media screen and (min-width: 750px) {
#shopify-section-template--23452401336584__collection_list_PUpHEH {
display: none;
}
}
A user wants to hide a collection list on desktop while keeping it visible on mobile in their Dawn theme.
Solution provided:
.shopify-section.section.section-collection-list { display: none; }Refinement:
#shopify-section-template-collection_list_HEHpUP { display: none; }Outcome:
The refined solution successfully resolved the issue. The user can now selectively hide the top collection list on desktop while preserving other collection lists and mobile functionality.
Yes please replace previous css with this one
@media screen and (min-width: 750px) {
#shopify-section-template--23452401336584__collection_list_PUpHEH {
display: none;
}
}