Overview

VisualLightBox is a free tool that helps you easily generate picture photo album, lightbox gallery with a nice Lightbox-style overlay effect, in a few clicks without writing a single line of code.

Just add your photos into VisualLightBox software window, press "Publish" and your own web page album script with beautiful LightBox effects will open in the browser immediately!
No css, image editing, javascript, html coding, just a click to get your cool web page album ready.

Visual LightBox for Windows   Visual LightBox for MAC

Want more?

Example

Lightbox gallery sample

The following image set is generated by VisualLightbox. Click any picture to run Lightbox gallery.

The photo gallery above is an in-page usage demo of Lightbox script. The website gallery created with VisualLightbox software is placed inside the html page. You can also check the full-page demo website gallery. This example takes whole browser area to show the gallery.make an online photo albumThe photo gallery above is an in-page usage demo of Lightbox. The web gallery created with VisualLightbox software is placed inside the html page. You can also check the full-page demo slideshow. This example takes whole browser area to show the lightbox gallery.

How to Use

Adding folders with images or images to best web site album.


From the Images menu, select Add images... Browse to the location of the folder you'd like to add and select the images. VisualLightBox will now include that folder. Or you can drag the images (folder) to the VisualLightBox software window. The image is copied to your pictures folder and automatically added to your web photo gallery.

If you have included the images that you do not wish to be in the best web site album, you can easily remove them. Select all images that you wish to remove from photo gallery, and select Delete images. from the Images menu. You can pick and choose pictures by holding the CTRL while clicking the pictures you like.

You can also use your Vista Photo Gallery projects (. Vgal) in VisualLightBox.

Add Images To Gallery


Adding caption.

When you select an image you'll see the various information about it, such as:

  • Caption - you can enter any comment or text about the image (up to 512 symbols) in the website photo gallery.
  • Path, Size - for each image, you will see the file name, full folder path; file size and date of last change.

Editing capabilities.

In this web photo gallery software you can easily rotate your pictures using "Rotate Left" and "Rotate Right" buttons.

Right click on the picture and select "Edit images." item to open the selected picture in your default graph program. You can adjust the color of pictures, as well as fix red-eye and crop out unwanted parts of an image.

Gallery properties.

Change the name of your css web site album, the size and quality of your pictures with Website Photo Gallery. From the Gallery menu, select Properties or use "Edit Gallery Properties" button on the toolbar.

On the first tab of the Gallery Properties window you can change the name of your website album and enable/disable the following properties: Slide Show, Auto play Slide Show, Zoom effect, Overlay Shadow.

On the second tab of the Gallery Properties window you can select the thumbnail you want to use, set the Thumbnails Resolution, Thumbnails Quality, Thumbnails Titles.

On the third tab of the Gallery Properties window you can select the templates, the size and quality of your pictures, set background color and change the watermark.

You can set up the various sizes for exported images.

Control the quality of output JPEG format image by defining output "Image quality" and "Thumbnail quality" parameters (0%�100%).

Save your photo gallery as project file.

When you exit VisualLightBox program, you'll be asked if you want to save your project. The project consists of the pictures you choose to put on your cool web page album and all your settings. It's a good idea to save the project, because that will allow you to change the project in case you decide to do something different with future galleries. So click Yes, then enter a name for your project. To select the location of your project, just click the Browse folders button and choose a different location. Then click Save.

web page photo album code Lightbox Forum

Download VisualLightbox

Download Visual LightBox Download Free Edition
for Windows
Download Visual LightBox Download Free Edition
for MAC

VisualLightBox is free for non-commercial use.

A small fee is required for business use. VisualLightBox Business Edition additionally provides an option to remove the VisualLightBox. Com credit line as well as a feature to put your own logo to images. After you finish the payment via the secure form, you will receive a license key instantly by e-mail that turns the VisualLightBox Free Edition into a Business one. You can select the most appropriate payment method: check, credit card, PayPal, bank transfer etc. Also you can get Business Edition for free if you help with translating Visual LightBox into your native language, please contact us at for more info.

website gallery

Buy Visual LightBox Buy Business Edition
for Windows

$49
Single Website
$69
Unlimited Websites
Buy Visual LightBox Buy Business Edition
for MAC

$49
Single Website
$69
Unlimited Websites

Support

For general help, feature requests, troubleshooting contact Customer Support at Make sure to include details on your operating system, browser, a link (or relevant code) and VisualLightbox version.make an online photo album

Feedback

    * I have installed visual lightbox to trial. All good, loving it!! I want to get an business version of your great programm. I love it - soo easy to use!!

    * I have just bought this product and think it is great. As it is extremely easy to use it is something I could get my clients to purchase to upload their own portfolio and latest projects etc.

    * I tried visuallightbox and for me its a very cool and usefull application. Its so easy to manage my galleries and it looks very nice.    * I have just bought this product and think it is great. As it is extremely easy to use it is something I could get my clients to purchase to upload their own portfolio and latest projects etc.

    * I'm absolutely loving VisualLighbox Business and Video LightBox. Amazing, quick and painless, to create a custom, browser independent gallery. And it works first time - every time! Best value for money I've seen in quite a while...

FAQ

Q:Is it possible to load a gallery from within image? So the gallery loads externally?

A:You should start the gallery onClick:

1) Add the following function into the <head> tag:

<script type="text/javascript">
function showLightBox()
{ Lightbox.start(document.getElementById('firstImage'));}
</script>

2) Specify the onClick event for the image (or link):
<img src="thumbnail_gr.jpg" onClick="javascript:showLightBox()" title="Click to see the demo" style="cursor: pointer;">
3) Set the ID for any image in your gallery (id="firstImage"), for example add it to the first image:
<a rel="lightbox_vlb" href="data/images/dscn6831.jpg" title="dscn6831" id="firstImage">
4) Use 'display: none;' property for your gallery in engine\css\vlightbox.css. Just change the following code:

#vlightbox a{
display:-moz-inline-stack;
display:inline-block;
zoom:1;
*display:inline;
position:relative;
vertical-align:top;
margin:3px;
width:160px;
font-family:Trebuchet,Tahoma,Arial,sans-serif;
font-size:11px;
font-weight:normal;
text-align:center;
opacity:0.87;
}

to:

#vlightbox a{
display:-moz-inline-stack;
display:none;
zoom:1;
*display:inline;
position:relative;
vertical-align:top;
margin:3px;
width:160px;
font-family:Trebuchet,Tahoma,Arial,sans-serif;
font-size:11px;
font-weight:normal;
text-align:center;
opacity:0.87;
}