Aligning the homepage masthead image and adjacent copy in a Shopify theme’s slideshow section. The goal: center the text block and buttons beside the image to match a provided mockup (screenshots supplied).
Initial fix: Add CSS to center-align the slideshow text wrapper, enlarge the heading (≈90px), and center buttons. This achieved the desired desktop layout.
Issue: Mobile layout broke after the desktop CSS changes. The request was to keep mobile unchanged while updating desktop.
Update for desktop-only: Wrap the desktop styles in a media query @media (min-width: 768px) to limit changes to larger screens.
Additional mobile adjustments: Via Theme Settings > Custom CSS, add @media (max-width: 768px) rules to set the slideshow section’s height to unset and reduce the heading font size to 40px for better responsiveness (specific selector for the slideshow section used).
Outcome: The desktop alignment and grouping were fixed; mobile view preserved and improved. User confirmed the solution works for responsive view. Resolution: solved. Technical note: used CSS media queries to target desktop vs. mobile layouts; screenshots were central to illustrate expected/actual results.
Summarized with AI on December 14.
AI used: gpt-5.
I am seeking help from you on aligning and grouping the landing page image with the copy displayed beside it. At this time I tried doing some CSS customisations but due to how the slideshow component works, I could go some extend.
This worked for desktop. However, the mobile view is broken. Is there a way that we can keep the mobile view as is but update only the desktop version.