Salut,
Mets ce code dans tes feuilles de styles CSS. Ça cache tes images de testimonial sur mobile et ça les affiche sur grand écran.
.icon-box-img.testimonial-image {
display: none;
}
@media (min-width : 768px) and (orientation: portrait) {
.icon-box-img.testimonial-image {
display: initial;
}
}