
Is it possible to change the carousel for featured collection from looking like the one above to look like the one below (Arrows on each side in center) just by using code?
Yes, i can help you if you want
Hi @MLBildeler
is this for both screen? Desktop and Mobile?
Would you mind sharing your store URL? Thanks!
Yes please ![]()
@MLBildeler Please follow below steps to change the slider button position. Let me know whether it is helpful for you.
.slider-button {
position: absolute;
top: 50%;
transform: translateY(-50%);
background: #ffffff75;
}
.slider-button--prev {
left: 0;
}
.slider-button--next {
right: 0;
}
.slider-counter {
display: none;
}
.slider-button .icon {
height: 1rem;
}
Result will be like,
Please provide your support by click “Like” and “Accepted” if our solution works for you. Thanks for your support.
Thank you very much, it worked ![]()