Hi @FredyP
You can create separate image banners for mobile and desktop, then add those custom codes below to hide desktop banner on mobile and vice versa.
Add this code to Custom CSS of destop’s banner.
@media (max-width: 749px) {
.banner { display: none; }
}
Ad this code to Custom CSS of mobile’s banner
@media (min-width: 750px) {
.banner { display: none; }
}