Website: shopvermoni.com
I am using impulse to add a custom liquid the code I have is correct and I have tried on 2 other themes, but on impulse the custom liquid doesn’t work properly, the code is supposed to have 2 different images one for mobile only and one for desktop only, which automatically changes but on impulse it shows both.
Does anyone who knows custom liquid know how to fix the issue?
Here is the code I am using for the custom content/custom liquid block on impulse home screen:
@media screen and (max-width: 750px) { .desktopimg { display: none; } .mobileimg { width: 100%; } } @media screen and (min-width: 750px) { .mobileimg { display: none; } .desktopimg { width: 100%; } } .banner-custom a { text-decoration: none; }