Shopify themes, liquid, logos, and UX
We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more
Hi there! I hope your Thanksgiving weekend was fantastic. I'd like the video banner to be full screen with a 16:9 ratio on mobile, and I want the text "Elevating your style" to appear on top of the video, just like it does on desktop. How can I make that work?
I'd like the video to occupy the full 16:9 screen on mobile devices, with the text overlaying the video. Please ensure there's no white space at the bottom of the screen.
@BrentonLoui , go to section-video-banner.css and add the following code:
@media (max-width:768px){
.video-banner__media--cover video {
object-fit: cover;
height: 50vh !important;
}
}