Hi mcglynn-Amember
As I can see that the slide item on your site is set with a fixed height (240px), so on mobile view, the image will be resized like that.
You can try with this custom css:
@media screen and (max-width: 480px) {
.acm-slideshow .owl-carousel .item {
height: auto !important;
}
.acm-slideshow .owl-carousel .item .slider-img {
height: auto !important;
}
}
put into the file: /templates/ja_social_ii/css/custom.css (Create this file if it doesn't exist).