Hi saguaros
Thanks for the reply. That did the trick for disabling the sliding. You should consider exposing these as options for the module, or at least mention it in the documentation.
In terms of the circular images, it seems it's set by the following CSS:
.acm-features.style-3 .item-inner .img-icon img {
border-radius: 100%;
object-fit: cover;
object-position: center;
}
and the small size due to the following CSS:
@media (min-width: 576px) {
.acm-features.style-3 .column-3 .img-icon {
height: 7.5rem;
width: 7.5rem;
}
}
I'll play around with those.