All Collections
Designs & Customization
Video Slideshow For Any Template
Video Slideshow For Any Template
Updated over a week ago

Some templates have no slideshow option by default, but there is a simple solution with a custom WYYIWG 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" placehlder 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>

For YouTube: code to use

Replace the "YOUR_VIDEO_ID" placehlder 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>

Did this answer your question?