Hey,
You can use css like this:
.kt-blocks-carousel .slick-prev {
left: -40px;
}
.kt-blocks-carousel .slick-next {
right: -40px;
}
Probably want to wrap that in a media query so it doesn’t go off screen on mobile:
@media (min-width: 992px) {
.kt-blocks-carousel .slick-prev {
left: -40px;
}
.kt-blocks-carousel .slick-next {
right: -40px;
}
}
Ben
Hi,
Just tried this, had to add !important to get them to move, but also when moved they are not visible, tried increasing the z-index but didn’t help.
Any suggestions appreciated.
Can you post a link to your site so I can see the setup?
Ben
Hi Ben,
Sent you an email with the URL.