Discuss and resolve questions on Liquid, JavaScript, themes, sales channels, and site speed enhancements.
Hello, can you assist me. Based upon your work here, my question is along the lines of this topic. I have added a video to my website by adding a "Custom Liquid" section. The video consist of only text and it is shown on both Desktop and Mobile. However, on mobile, the video is extremely small. Can the existing code be modified to make the video larger on Mobile? Here is the code being used (Note that I replace my website with "web address goes here".
<style>
video {
width: 100%;
height: auto;
display: block;
margin: 0 auto;
}
</style>
<video muted autoplay playsinline loop>
<source src="web address goes here">
<source src="web address goes here">
</video>
Similar threads to:
padding size in mobile view for policy page
Solved! Go to the solution
This is an accepted solution.
Hi @Exodusllc
Please, share your store URL. Thanks!
This is an accepted solution.
Hi @Exodusllc
Please, share your store URL. Thanks!
Hello, do you have a recommendation I can try simply by modifying the shown CSS😁?
Thank you for your support. You solution works perfectly!!!!
I just needed to copy, paste and change the links. Thanks again!
<style>
/* General Styles */
video {
width: 100%;
height: auto;
display: block;
margin: 0 auto;
}
/* Hide Mobile Video on Desktop */
.desktop-video {
display: none;
}
/* Hide Desktop Video on Mobile */
.mobile-video {
display: none;
}
/* Show Desktop Video for Larger Screens */
@media (min-width: 768px) {
.desktop-video {
display: block;
}
}
/* Show Mobile Video for Smaller Screens */
@media (max-width: 767px) {
.mobile-video {
display: block;
}
}
</style>
<!-- Desktop Video -->
<video class="desktop-video" muted autoplay playsinline loop>
<source src="desktop-video.mp4" type="video/mp4">
</video>
<!-- Mobile Video -->
<video class="mobile-video" muted autoplay playsinline loop>
<source src="mobile-video.mp4" type="video/mp4">
</video>
Oh, you posted ahead of me. Welcome! Would you mind hitting 'like' as well? Thanks!
Hi @Exodusllc
Please share your store URL so I can take a closer look
Best,
Daisy
Is there another way to share my store link? I prefer not to share on a forum.
Hey Community! As we jump into 2025, we want to give a big shout-out to all of you wh...
By JasonH Jan 7, 2025Hey Community! As the holiday season unfolds, we want to extend heartfelt thanks to a...
By JasonH Dec 6, 2024Dropshipping, a high-growth, $226 billion-dollar industry, remains a highly dynamic bus...
By JasonH Nov 27, 2024