Hello,
i have the problem, that in the phone variant the beginning of the next picture is showing.
How can i remove that, so you can only see the current picture?
Using Ride Theme.
Main issue: On mobile in the Shopify Ride theme, the carousel shows the beginning (“peek”) of the next image; the requester wants only the current image visible.
Context: A helper asked for the store URL and any password. The store link (diversleague.com) was provided; no password was shared.
Proposed fix: Edit the theme’s base.css and add a mobile-only CSS rule (media query at max-width: 749px) that sets the .grid–peek.slider–mobile element to width: 105% !important. This adjustment removes the visible edge of the next slide on phones. Briefly: a CSS media query targets mobile, and the .grid–peek.slider–mobile class controls the mobile slider layout.
Evidence: Before/after screenshots were shared; images are central to understanding the issue and the result.
Status: The fix has been proposed with step-by-step instructions, but the original poster has not yet confirmed success. The thread appears open pending confirmation.
Hello,
i have the problem, that in the phone variant the beginning of the next picture is showing.
How can i remove that, so you can only see the current picture?
Using Ride Theme.
Hello.
Our team is ready to help you.
Please share your website address and access password (if necessary) so that we can check and assist you.
@media screen and (max-width: 749px) {
.grid--peek.slider--mobile {
width: 105% !important;
}
}