Hello Clive Struver
If you want to remove front images completely on mobile device you can take help of media query. You can add this css on child theme style.css file to fix your issue
@media (max-width: 480px) {
#pref-featured-top {
display:none;
}
}
Please let us know if we are understading fully or perhaps this is not what you meant for.
Thanks