My slideshow is too big for desktop view. Can I hide it but leave it visible on mobile?
Hey @Connor1836
Please add this CSS code
- Go to Shopify Admin → Online Store → Themes
- Click ⋯ → Edit code
- Open:
assets/base.css
- Add your CSS at the bottom:
#shopify-section-template--24648653668737__93b945ae-7898-4f93-8d72-7fdd52834d11 {
display: none;
}
@media (max-width: 480px) {
#shopify-section-template--24648653668737__93b945ae-7898-4f93-8d72-7fdd52834d11 {
display: block;
}
}
Hey @Connor1836
Follow these Steps:
- Go to Online Store
- Edit Code
- Find theme.liquid file
- Add the following code in the bottom of the file above </ body> tag
<style>
@media screen and (min-width: 768px) {
slideshow-component {
display: none !important;
}
}
</style>
RESULT:
If I managed to help you then a Like would be truly appreciated.
Best,
Moeed

