I want to add diffrent slideshow sections on mobile and desktop

Hello, i have a store, in taste 2 theme, and i want to use diffrent slideshows on mobile and desktop. i watched a lot of tutorials and discussions, but nothing helped me. Store link: https://stoneriai.lt i want to use first slideshow in desktop, and second one on mobile.

Hi @Bausmingasis ,

May I suggest to update code these steps:

  1. Go to Store Online-> theme → customize

  2. Footer section → Custom CSS

  3. Enter code below likes screenshot → Save

@media(max-width: 749px){
  #shopify-section-template--21976477499732__slideshow_VxXcrP {
    display: none;
  }
}
@media(min-width: 750px){
  #shopify-section-template--21976477499732__slideshow_qRUUqA {
    display: none;
  }
}

This didnt work, but i put it in base.css and it worked! thanks a lot