How can I hide a specific collection on mobile?

Hi Gurus,

I have hopefully easy question. Is there a way to hide one specific colection on mobile?

My web: www.doramu.cz

I’m trying to hide collection in menu Sestavy/Vlastni sestava

Thanks a lot for help :slightly_smiling_face:

Petr

1 Like

@PetrMachacek

Please add the following code at the bottom of your assets/theme.css file.

@media screen and (max-width: 640px){
.Collapsible__Content a[href="/pages/design-own-poster-wall"] {
    display: none;
}
}

Hope this works.

Thanks!

1 Like