Video on DAWN Theme

Hello,

I really want to add a video onto my homepage on my website, but there is a play button and the time bar at the bottom of the video when i try to put it up on the site. Is there a way for the video to just upload as a loop that doesn’t have to be played ever, and is just constantly looping on my homepage?

my website is creativeblueprintbrand.com. The video is not up right now, but any help on this would be great!

Hi @creativebp8

In your theme (likely Craft or whichever section you’re editing), add this snippet where you want the video:

<video 
  autoplay 
  muted 
  loop 
  playsinline 
  preload="auto" 
  class="homepage-video">
  <source src="{{ 'your-video.mp4' | file_url }}" type="video/mp4">
  Your browser does not support the video tag.
</video>

Please send me the collaborator code. I will send you a store access request and give you a proper update.

no it is the Dawn theme

Hi @creativebp8 ,
Go to Online Store → Themes → Actions → Edit code → Sections → hero.liquid
or any other section where you want video to apear.
add this code

<div class="homepage-video-wrapper">
  <video autoplay muted loop playsinline class="homepage-video">
    <source src="{{ 'your-video.mp4' | asset_url }}" type="video/mp4">
    Your browser does not support the video tag.
  </video>
</div>

then go to Online Store → Themes → Actions → Edit code → Assets
upload your video ( ‘your-video.mp4’) there.
find base.css and add this at the bottom

.homepage-video-wrapper {
  position: relative;
  width: 100%;
  height: 500px; /* adjust height as needed */
  overflow: hidden;
}

.homepage-video {
  width: 100%;
  height: 100%;
  object-fit: cover; /* keeps aspect ratio and covers area */
  display: block;
}

Save and refresh preview.

Best
Anmol

Hi @creativebp8

Could you share the code of video section?

@creativebp8 you can go to home page in customize settings, add custom liquid section and in that section can copy the code given by @devcoders or @anmolkumar

if you need any more help then I can do it for you