Hi @mstudioil ,
Here’s a custom CSS code that should be compatible with desktop, tablet, and mobile devices, so please copy/paste into your page and let me know if it works fine.
.premium-carousel-inner>a.carousel-arrow.carousel-prev {
left: 93% !important;
top: 102% !important;
}
.premium-carousel-inner>a.carousel-arrow.carousel-next {
left: 80% !important;
top: 102% !important;
}
@media only screen and (max-width: 460px) {
.premium-carousel-inner>a.carousel-arrow.carousel-prev {
left: 76% !important;
top: 1% !important;
}
.premium-carousel-inner>a.carousel-arrow.carousel-next {
right: 0 !important;
top: 1% !important;
}
}
@media only screen and (min-width: 461px) and (max-width: 1024px) {
.premium-carousel-inner>a.carousel-arrow.carousel-prev {
left: 90% !important;
top: 110% !important;
}
.premium-carousel-inner>a.carousel-arrow.carousel-next {
right: 0 !important;
top: 110% !important;
}
}
Regards.