Happening now | Office Hours: Customizing Your Theme With Moeed | Ask your questions now!

How can I make a video display only on desktop and not on mobile?

Solved

How can I make a video display only on desktop and not on mobile?

Zetterman
Tourist
14 0 1

Hi i want the video to not show on mobile but don't understand what's wrong with this code

 

<style>
@media screen and (min-width: 768px)
{
video {
display: block;
margin: 0 auto;
width: 100%;
height: 100%;
}
}

@media screen and (max-width: 768px)
{
video {
display: none;
}
}
</style>

<video autoplay loop playsinline muted>
<source src="https://cdn.shopify.com/videos/c/o/v/35fa068e97f84cfdb642d30b40cf7ce6.mp4"
</video>

Accepted Solution (1)

ZenoPageBuilder
Shopify Partner
1052 203 229

This is an accepted solution.

Hello @Zetterman 👋

You should use this code instead

<style>
video {
    margin: 0 auto;
    width: 100%;
    height: 100%;
}

@media screen and (max-width: 768px){
    video {
        display: none;
    }
}
</style>

<video autoplay loop playsinline muted>
    <source src="https://cdn.shopify.com/videos/c/o/v/35fa068e97f84cfdb642d30b40cf7ce6.mp4">
</video>

Hope that helps!

Zeno Page Builder - Build responsive & SEO-optimized Landing pages, Blog posts, Product pages and more...
Learn more at zenobuilder.com

View solution in original post

Replies 7 (7)

GabrielS
Shopify Partner
486 107 117

Hi there,

 

Try to use !important and the end of the CSS style, as below:

video {
display: none !important;
}

 

Cheers!

Gabriel Soare | Web Developer
Are you looking to customize your Shopify or to fix a website bug?
You can reach me through my website gabrielsoare.com, DM, or email hello@gabrielsoare.com.
Have I helped you? Like my post.
ksdigital
Visitor
1 0 0

GO Immobilier, spécialiste en Digital Marketing Suisse.

Site internet gratuit Suisse

made4Uo
Shopify Partner
3877 719 1232

Hi @Zetterman 

 

Try the video tutorial below to only show certain section on specific device. 

If this fixed your issue Likes and Accept as Solution is highly appreciated. Coffee tips fuels my dedication.
Get EXPERIENCED Shopify developers at affordable rates—visit Made4Uo.com for quick quote!
Do not lost your Shopify store! Get FREE trial with ✔️ Rewind Backup: Automatic, reliable, stress-free

ZenoPageBuilder
Shopify Partner
1052 203 229

This is an accepted solution.

Hello @Zetterman 👋

You should use this code instead

<style>
video {
    margin: 0 auto;
    width: 100%;
    height: 100%;
}

@media screen and (max-width: 768px){
    video {
        display: none;
    }
}
</style>

<video autoplay loop playsinline muted>
    <source src="https://cdn.shopify.com/videos/c/o/v/35fa068e97f84cfdb642d30b40cf7ce6.mp4">
</video>

Hope that helps!

Zeno Page Builder - Build responsive & SEO-optimized Landing pages, Blog posts, Product pages and more...
Learn more at zenobuilder.com
Zetterman
Tourist
14 0 1

Thank you so much!

 

ZenoPageBuilder
Shopify Partner
1052 203 229

You are welcome 🙂

Zeno Page Builder - Build responsive & SEO-optimized Landing pages, Blog posts, Product pages and more...
Learn more at zenobuilder.com
jaidant27
Visitor
1 0 0

How about the opposite? Displaying it on mobile but not desktop? Whats the code for that?