Move buttons

Topic summary

A user reports that slider navigation buttons, previously positioned on the sides of their slider, have disappeared from their Shopify store.

Issue Details:

  • The buttons are no longer visible in their expected side positions
  • A screenshot was provided showing the current state

Solution Provided:

  • Add custom CSS code to the slider section in the theme customizer
  • The CSS targets .slider-buttons with properties:
    • justify-content: space-between to position buttons on opposite sides
    • width: 100% for full-width spacing
    • position: absolute and top: 50% for vertical centering

Status: A complete CSS solution has been offered; implementation and confirmation pending.

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

Hello,

I would want the buttons to be on the sides of the slider, they have been there before but now there not.

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

Thanks for your help!

Hi @manbru

Please add this code to Custom CSS of that section in theme customize

.slider-buttons {    
    justify-content: space-between;
    top: 50%;
    position: absolute;
    width: 100%;
}