Can I reposition buttons for each slide in Debut theme?

Good day, I am using Debut theme. Is it possible to move a button to a new position for each individual slide?

Eg: Have the button on the right hand side of the first slide and then on the left hand side for the second slide.

Best regards

Hello,
Please share your site url.
So that I can check and let you know the exact solution here.

https://baluapparel.com

Add this css at the bottom of
Online Store->Theme->Edit code->Assets->timber.scss.liquid

@media only screen and (min-width:769px){
#SlickSlide1 .hero__text-content {
    text-align: right;
}
#SlickSlide2 .hero__text-content {
    text-align: left;
}
}
1 Like