Remove collection list only on desktop?

Hi, i want to remove the collection list but only on desktop version. Like i describe here:

i’m using the dawn theme and my url is: https://8ni0pc-bm.myshopify.com/de

Hello @Anonymous ,

Follow these steps:

  1. Go to Online Store → Theme → Edit code

  2. Open your base.css file and paste the following code at the bottom:

@media screen and (min-width: 750px) {
.shopify-section.section.section-collection-list {
    display: none;
}
}

If problem solved don’t forget to Like it and Mark it as Solution!
And if you need help with customization/code part you can contact me for services

You can find the email in the signature below.

Thanks

It’s working. Thank you :slightly_smiling_face:

Is it possible to remove only this one and not all the collection list? I can’t add new ones. I only want to remove the collectionlist at the top.

Kind regards

Yes please replace previous css with this one

@media screen and (min-width: 750px) {
#shopify-section-template--23452401336584__collection_list_PUpHEH {
    display: none;
}
}

This code is working. Thank you so much :slightly_smiling_face: