Hello @andrew72 , Use this code to manage height of your video
.video-section__media video {
max-height: 800px;
}
Additionally, I have noticed that a poster image is currently being displayed with the video. Please remove the poster image and retain only the video code, as autoplay and loop functionalities are already enabled.
With my tutorial it will help you to add video section with customizations for all.
And if you want to reduce the height for the current video section, please go to Actions > Edit code > Assets > base.css file and paste this at the bottom of the file:
@media screen and (min-width: 750px) {
#shopify-section-template--16080752017562__full_width_video_3jbzdp video {
min-height: 850px !important;
}
}