Looking for help with making a Shopify website more responsive. I have a hero video at the top, but it's leaning to the right and leaving a blank space on the left. Can anyone assist me in making it 100% responsive without much coding knowledge? I've spent three days searching for a solution with no luck...
The current website with the video can be found here:
I only want to keep the second video at the top and not the current one. Here is the HTML and CSS code I have used:
HTML
<div id="hero_video">
<video autoplay="" playsinline="" muted="" loop="" id="Hero_Video">
<source src="https://cdn.shopify.com/s/files/1/0226/0153/1467/files/background_video_1.mp4?1009" type="video/mp4">
</video>
</div>
CSS
#Hero_Video {
position: relative;
width: 100vw;
max-height: 100%;
}
/* Hero Video Style */
.hero_video {
left: 50%;
margin-left: -200vw;
margin-right: -50vw;
max-width: 100vw;
position: relative;
right: 50%;
width: 100vw;
}