Hi,
I wanted to add an image before the footer of my page.
I added this code to display two different sizes of the same image and put it in the footer.liquid file:


Now that both images are added before footer, I want to display respective images for respective kind of device: phone or desktop.
I saw this code somewhere and pasted it in the bottom of theme.scss.liquid but there was no change in result:
@media all and (min-width: 480px) {
.deskContainer {display:block;}
.phoneContainer {display:none;}
}
@media all and (max-width: 479px) {
.deskContainer {display:none;}
.phoneContainer {display:block;}
}
Despite adding the above code, both the images are being displayed in both kinds of devices. Can someone please help me as to how can I display the respective images for different displays, i.e., phone and desktop
Any help is highly appreciated.
Store- sohumretail.myshopify.com
Pass- Chaman@10
Thanks!