A user is trying to reposition navigation arrows in a custom collection slider on their Shopify store. Currently, the arrows appear inside the collection images, making them difficult to see.
Desired outcome: Move arrows outside the image boundaries (as shown in attached mockup).
Two solutions proposed:
Structural approach: Wrap .slider with .slider-track, add overflow: hidden, remove negative margins from arrow elements, and include media queries for mobile responsiveness. Includes complete revised HTML/CSS code.
CSS-only approach: Use absolute positioning with negative left/right values (left: -40px, right: -30px) on arrow elements, adjust parent container positioning, and add relative positioning to .collection-slider. Targets screens 768px and wider.
Both solutions include code snippets and reference screenshots. The issue remains open with no confirmation of which approach was implemented or successful.
Summarized with AI on November 4.
AI used: claude-sonnet-4-5-20250929.
I’ve wrapped .slider with .slider-track, added overflow: hidden to .slider-track, and removed the negative margins from .left-arrow and .right-arrow. Additionally, I’ve added some media queries to improve the mobile view.