Skip to content

Instantly share code, notes, and snippets.

@hscbhnhi
Created January 23, 2021 13:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hscbhnhi/29b66268ca0054f6766edf0a3fbb0da8 to your computer and use it in GitHub Desktop.
Save hscbhnhi/29b66268ca0054f6766edf0a3fbb0da8 to your computer and use it in GitHub Desktop.
/* -- hide mobile slideshow on desktop */
@media only screen and (min-width: 750px){
#mobileSlide {
display: none;
}
/* -- hide desktop slideshow on mobile */
}
@media only screen and (max-width: 749px){
#shopify-section-slideshow {
display: none;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment