Hi Chris,
The easiest approach here would be:
1 - Wrap the image around a DIV tag;
2 - Set a class for this DIV. For instance class="hide-mobile";
3 - Then add to the Admin/Site Settings Style Sheet a Media query definition that would hide the div if it is on mobile. For instance:
@media only screen and (max-width: 767px) {
.hide-mobile {
display: none;
}
}
Note: I recommend that you get familiar with media queries in case you are not yet:
https://css-tricks.com/snippets/css/m...
Cheers,
Aderson