Hi, I have a script with a video loop background. I want the site to load faster, so I need to replace that video background with an image. Heres the code: <div class="wrapper" style="position:absolute !important;height:100% !important;width:100% !important;margin-top:-200px !important;"> <div class="embed-responsive embed-responsive-16by9"> <video autoplay loop class="video" style="margin-top:200px;width:100%;"> <source src=http://www.videoloopexample.com/video.m4v type=video/mp4> </video> </div> Im sure its pretty easy. How can I change it for an image? Thanks!
Just remove the video element and use an img element instead. If you want it to link to the video, wrap it in an a element with a link to the image.