How would I hide this video on desktop but show it on mobile?
url is wintheoryco.com
1 Like
Hi EthanOSHOP,
- In your Shopify Admin go to online store > themes > actions > edit code
- Find Asset > video-section.css and paste this at the bottom of the file:
@media screen and (min-width: 749px) {
.video-section__media{
display: none !important;
}
}
If I managed to help you then, don’t forget to Like it and Mark it as Solution!
Hello There,
- In your Shopify Admin go to online store > themes > actions > edit code
- Find Asset > base.css and paste this at the bottom of the file:
@media screen and (min-width:767px){
.video-section {
display: none;
}
}