Some templates have no slideshow option by default, but there is a simple solution with a custom Freestyle Page.
You can make your own video landing pages with any Vsble template easily using our page editor. In just 1 minute, this guide shows you how to add videos that play automatically when someone visits your site. Perfect for templates that don't come with a slideshow. Watch the video below and use dedicate codes for YouTube or Vimeo provided.
For Vimeo: code to use
Replace the "YOUR_VIDEO_ID" placeholder with your Vimeo video ID.
<div style="overflow: hidden; position: fixed; top: 0; left: 0; bottom: 0; right: 0;">
<iframe src="https://player.vimeo.com/video/YOUR_VIDEO_ID?autoplay=1&muted=1&background=1" style="position: absolute; top: 50%; left: 50%; width: 177.77vh; height: 100vh; transform: translate(-50%, -50%);" frameborder="0" allowfullscreen=""> </iframe>
</div>
Alternatively, if the video is not playing as desired, use this code:
<div style="overflow: hidden;position: fixed;top: 69px;left: 0;bottom: 84px;right: 0;"><iframe src="https://player.vimeo.com/video/YOUR_VIDEO_ID?autoplay=1&muted=1&background=1" style="position: absolute;top: 50%;left: 50%;width: 100%;height: 100%;transform: translate(-50%, -50%);" frameborder="0" allowfullscreen="yes"> </iframe></div>
For YouTube: code to use
Replace the "YOUR_VIDEO_ID" placeholder with your YouTube video ID.
<div style="overflow: hidden; position: fixed; top: 0; left: 0; bottom: 0; right: 0;"> <iframe src="https://www.youtube.com/embed/YOUR_VIDEO_ID?autoplay=1&mute=1&controls=0&showinfo=0&rel=0&modestbranding=1&playlist=YOUR_VIDEO_ID&loop=1" style="position: absolute; top: 50%; left: 50%; width: 177.77vh; height: 100vh; transform: translate(-50%, -50%);" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen=""> </iframe> </div>