Hello I used code to assign 1 and 2 image to desktop and mobile view. I used to different size image for both views. I have been able to optimize image for mobile view but unfortunately not for laptop view. Please help me out its killing me.
Thanks
Forgot to mention url sorry
The image banner size of 1600 x 1050 px can work better with the desktop
Please add the following CSS code to your assets/base.css bottom of the file.
@media screen and (min-width: 750px){
.banner__media.media>img {object-fit: unset !important;}
}
Thanks!