collection slider

Topic summary

A user successfully positioned slider navigation arrows outside the slider container using custom CSS for one collection slider. The solution involved:

Working CSS approach:

  • Set .slider-arrow.left-arrow to position: absolute with left: -50px
  • Changed .slider-container to position: unset
  • Set .collection-slider to position: relative
  • Applied similar positioning to right arrow
  • Wrapped in media query for screens 768px and wider

Current issue:
The same CSS code doesn’t work for two other collection sliders on the site. The user wants to achieve the same external arrow positioning (as shown in their first image) for these additional sliders.

The discussion remains open with no solution yet provided for applying this styling consistently across all collection sliders.

Summarized with AI on November 4. AI used: claude-sonnet-4-5-20250929.

Hello,

To get the arrows to be outside of the slider in the image above I added this custom css code:

@media screen and (min-width: 768px) {
  .slider-arrow.left-arrow {
    position: absolute !important;
    left: -50px !important;
  }
  .slider-container {
    position: unset !important;
  }
  .collection-slider {
    position: relative !important;
  }
  .slider-arrow.right-arrow {
    position: absolute !important;
    right: -45px !important;
  }
}

But for the other 2 collection sliders the same code does not work, to get the arrows outside of the sliders:

I would want the arrows on these two sliders to be outside, just like in the very first image i showed.

my store: https://r1vex.myshopify.com/

Thanks for helping!