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

How do I add video to an existing video in popup

Dec 13, 2011

Q: I could o with some advice. Am using video light box to add videos to my html page, uploading the initial videos is fine but when I want to add/upload more I open the existing file and try and add videos its says I cant have 2 galleries on same page, how do I add to an existing gallery?

A: You should update the gallery in the following way:

1. Save your gallery as project file (.yprj): Gallery->Save as.
2. To add videos to the gallery/edit gallery open saved project: Gallery->Open
and make changes you need.
3. Remove old gallery from the page:

find and remove Video LightBox HEAD section from <head></head> tags of your page:

<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 -->
     ...
    </head>



find and remove Video LightBox BODY section from <body></body> tags of your page:

<body bgcolor="#f0f0f0">
      ...
           <!-- Start VideoLightBox.com BODY section -->
                ...
           <!-- End VideoLightBox.com BODY section -->
      ...
     </body>



4. Install new gallery on the same page.

Try this.

Related