Goal: make Shopify Ride’s “Image with Text” section behave like a slideshow where image and matching text auto-rotate.
Key constraint:
The default “Image with Text” supports a single static block, not multiple slides.
Proposed solutions:
Create a custom slideshow-style section that preserves the Image-with-Text layout and supports multiple blocks per slide (Image, Heading, Text, optional Button), with autoplay via theme JS or a lightweight slider (e.g., Swiper/Flickity).
Alternatively, restyle the existing Slideshow section with Custom CSS to achieve a 50/50 image-text layout; uncheck the “Container” for text content. Additional CSS (nth-child rules) can alternate image/text sides across slides. Further CSS tuning may be needed.
Notes:
Code snippets and a screenshot are central to implementation.
Terms: CSS (Cascading Style Sheets), JS (JavaScript), blocks (content units within a section).
Outcome:
The requester confirmed the approach works perfectly.
Status: resolved; no outstanding questions.
Summarized with AI on November 25.
AI used: gpt-5.
Hi @KBOTRBNT ,
You can definitely achieve this, but the default “Image with Text” section in the Ride theme does not support multiple slides it’s designed for a single static block. To make it behave like a slideshow (auto-changing image + matching text).
Create a Custom Slideshow-Style Section
This is the recommended approach.
You would create a new section (e.g., slideshow-image-with-text.liquid) that:
Allows adding multiple blocks, each block containing:
An image
Heading
Text
Button (optional)
Wraps the blocks inside a simple slider (e.g., using the theme’s existing slideshow JS or a lightweight slider like Flickity/Swiper).
Automatically rotates slides using JavaScript.
This gives you the slideshow feel while maintaining the “Image with Text” layout.
However, you can modify the “Slideshow” section to resemble “image with text” layout.
Add this to “Custom CSS” setting of this “Slideshow” section and uncheck “Container” for text content:
Yes, this is possible, but the default Image with Text section in the Ride theme multiple slides. You will need to create a custom section or modify the current one with custom code to add multiple blocks, autoplay, and slide transitions.
If you want, I can create this custom slideshow-style “Image with Text” section for you.