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!
A user reports that slider navigation buttons, previously positioned on the sides of their slider, have disappeared from their Shopify store.
Issue Details:
Solution Provided:
.slider-buttons with properties:
justify-content: space-between to position buttons on opposite sideswidth: 100% for full-width spacingposition: absolute and top: 50% for vertical centeringStatus: A complete CSS solution has been offered; implementation and confirmation pending.
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%;
}