Hi patvandenbosche
This is a known issue with the responsive layout, in the small the screen, if we show the image with the same height as desktop view, it will crop the image to show a part of image only.
In case that you want to show the image completely, you can use some custom style but it will be resized:
@media (max-width: 480px) {
.acm-slideshow .item {
background-size: contain;
background-repeat: no-repeat;
}
.acm-slideshow .slider-content {
padding-top: 30px !important;
padding-bottom: 30px !important;
}
.acm-slideshow .item-title {
font-weight: 100;
font-size: 20px;
}
}
it will look like this:
You can consider to show less text / button / decrease font size / etc ... in small screen so it can display better.