Hi im using an custom html or liquid to display a video I’ve made a code for not displaying the video when on mobile. This code however makes all the videos on my page to disappear and not just the one I want why is this? This is the code would like some help!
video { margin: 0 auto; width: 100%; height: 100%; } @media screen and (max-width: 768px) { video { display: none !important; } }Add class/Id in video tag
try this one
Hi @Zetterman
You can try to replace your code with this code.