S
silkysackJan 18, 2021
hello, im trying to use the html5 video section from sections.html and i want to add a shape divider to it. Here is the code Im using, but the shape dividers wont show, please help. Thanks!
<div class="section dark m-0 border-0 min-vh-60">
<div class="shape-divider" data-shape="valley-3" data-height="150"></div>
<div class="container-fluid vertical-middle center clearfix">
<i class="i-plain i-large icon-line-video mx-auto" data-animate="fadeInDown"></i>
<div class="emphasis-title m-0" data-animate="fadeInUp">
<h2 style="font-size: 56px;">Section with HTML5 Video</h2>
</div>
</div>
<div class="video-wrap">
<video poster="images/videos/explore-poster.jpg" preload="auto" loop autoplay muted>
<source src='images/videos/explore.webm' type='video/webm' />
<source src='images/videos/explore.mp4' type='video/mp4' />
</video>
<div class="video-overlay"></div>
</div>
<div class="shape-divider" data-shape="valley-3" data-position="bottom" data-height="150"></div>
</div>