A user working with the Shopify Split theme (Cuber style) wants to display different slideshows for mobile versus desktop users and asks for the Custom CSS code to achieve this.
Proposed Solution:
Multiple respondents suggest creating two separate slideshow sections in the theme editor—one for desktop, one for mobile—then using CSS media queries to hide each appropriately:
Desktop slideshow: Hide on mobile using @media screen and (max-width: 768px) with display: none
Mobile slideshow: Hide on desktop using @media screen and (min-width: 769px) with display: none
Key Details:
Specific CSS code snippets provided target either .site-box-container or .css-slider-viewport classes
One respondent initially suggested an image banner approach, but clarified that slideshows and image banners are different features
The implementation logic remains similar across different section types
Status: The question received multiple working solutions with code examples, though minor syntax variations exist between responses (e.g., breakpoint values, typos in media query syntax).
Summarized with AI on October 29.
AI used: claude-sonnet-4-5-20250929.
I have tried both of these suggestions for my issue but both slideshows show up on both desktop and mobile. How do I code so only one shows up on each platform.