English  Italiano  Français  Español  Dansk  Deutsch  Deutsch  Português  Suomi 
Video Lightbox

WOW slider and flv file embed at the same time

Nov 18, 2011

Q: We would like to use on a website WOW slider and flv file embed the same time, we
have all the codes on a page, but they do not work properly.

A: To install WOW Slider and Video LightBox galleries
on the same page, you should:

- set Video LightBox HEAD section before WOW Slider HEAD section;
- remove the following line from WOW Slider HEAD section:

<script type="text/javascript" src="engine1/jquery.js"></script>



So you'll have:

<head>
...
<!-- Start VideoLightBox.com HEAD section -->
<link rel="stylesheet" href="engine/css/videolightbox.css" type="text/css" />
<style type="text/css">#videogallery a#videolb{display:none}</style>

<link rel="stylesheet" type="text/css" href="engine/css/overlay-minimal.css"/>
<script src="engine/js/jquery.tools.min.js" type="text/javascript"></script>
<script src="engine/js/swfobject.js" type="text/javascript"></script>
<!-- make all links with the 'rel' attribute open overlays -->
<script src="engine/js/videolightbox.js" type="text/javascript"></script>
<!-- End VideoLightBox.com HEAD section -->
                
<!-- Start WOWSlider.com HEAD section -->
<link rel="stylesheet" type="text/css" href="engine1/style.css"/>
<style type="text/css">a#vlb{display:none}</style>

<script type="text/javascript" src="engine1/wowslider.js"></script>

<!-- End WOWSlider.com HEAD section -->
...
</head>

Related