Hello There,
Thanks for writing in! The easiest way is to add a custom ID or class in your image. You can then make use of this code to make it smaller on mobile devices.
@media(max-width: 979px){
#my-custom-ID {
max-width: 280px;
margin-left: auto;
margin-right: auto;
}
/* if you are using a class */
.my-custom-class {
max-width: 280px;
margin-left: auto;
margin-right: auto;
}
}
If you need anything else, please let us know.