I think you used the wrong method to insert the link into your source code. It looks like this:
Code:
<a title="" href="<a%20href="http://www.evy-designs.com/IMG_0781.jpg"%20rel="lightbox"%20title="my%20caption">image%20#1</a>"> . . . . </a>
It should look like this:
Code:
<a href="http://www.evy-designs.com/IMG_0781.jpg" rel="lightbox" title="my caption"> . . . . </a>
Also, the scripts:
Code:
<script src="js/prototype.js" type="text/javascript"></script>
<script src="js/scriptaculous.js?load=effects" type="text/javascript"></script>
<script src="js/lightbox.js" type="text/javascript"></script>
aren't available to the page where the above tags say that they will be. Each one should be in a folder 'js' off of the folder that the page is in. Be sure to also include effects.js in that folder, as it is called by scriptaculous.js.
The style:
Code:
<link media="screen" type="text/css" rel="stylesheet" href="css/lightbox.css" />
isn't there either. It should be in a folder named 'css' off of the folder where the page is.
The above files are all in the distribution archive:
http://www.dynamicdrive.com/dynamici...htbox2.03a.zip
linked to on the demo page.
There are also resource images in that archive, these should be in a folder 'images' off of the folder that your page is in.
In the archive, all these files are there and are in their respective folders.
There could still be other problems.
Bookmarks