How do I hide video in only mobile version of prestige shopify theme?

Solved

How do I hide video in only mobile version of prestige shopify theme?

Milian
Tourist
7 0 3

How do I hide video in only mobile version of prestige 5.5.0 shopify theme? Website is www.thalieparis.com

Thank you in advance. 

Accepted Solution (1)

diego_ezfy
Shopify Partner
2971 571 923

This is an accepted solution.

@Milian, do this to fix it in 20 seconds:

1. In your Shopify Admin go to: online store > themes > actions > edit code
2. Find Asset > theme.css and paste this at the bottom of the file:

@media (max-width: 749px){
    [id*='shopify-section'] [data-section-type="background-video"]{
    display: none !important;
}
}



Kind regards,
Diego

View solution in original post

Replies 2 (2)

diego_ezfy
Shopify Partner
2971 571 923

This is an accepted solution.

@Milian, do this to fix it in 20 seconds:

1. In your Shopify Admin go to: online store > themes > actions > edit code
2. Find Asset > theme.css and paste this at the bottom of the file:

@media (max-width: 749px){
    [id*='shopify-section'] [data-section-type="background-video"]{
    display: none !important;
}
}



Kind regards,
Diego

Milian
Tourist
7 0 3

@diego_ezfy Thank you a lot. It's working.