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; } }