Am Using Custom Liquid to Display Video. How to Edit to ONLY show on mobile

Hey all, found this code for a custom liquid video display on ‘Dawn’ theme - works perfectly on mobile but would like it hidden on desktop monitors. How do I edit the below code to adjust? Thanks!

video { width: 100%; height: auto; display: block; margin: 0 auto; }

EDIT: Solved, thanks!

Fix:

@media (max-width: 767px) { video { width: 100%; height: auto; display: block; margin: 0 auto; } } @media (min-width: 768px) { video { display: none; } }

@mochi93 , Could you please share your store URL? so can check and guide you accordingly.

ALL sorted, thanks :slightly_smiling_face:

1 Like