The key to where the gallery shows up is (from the demo page):
Step 2: Add the below HTML code to the <BODY> section of your page. It contains the actual HTML for all your images in the gallery:
That means that you put the code from Step 2 in the body section at the spot where you want it to show up. On most pages (using conventional layout techniques), if you want it at the bottom then, it should be the last thing before the </body> tag.
To center it yes, move the opening comment delimiter (red) so that it looks like so:
Code:
#motioncontainer {
margin:0 auto; /* Uncomment this line if you wish to center the gallery on page */
width: 50%; /* Set to gallery width, in px or percentage */
height: 130px; /* Set to gallery height */
}
On to your last question, here is the template for that (taken from the demo code):
Code:
<a href="javascript:enlargeimage('dynamicbook1.gif')"><img src="dynamicbook1.gif" border=1></a>
It is a little confusing because to save on images for the demo, the same image was used for both the thumb and enlarged versions.
Also, on the demo page, only the first two leftmost images are setup to show 'enlarged' images. The first with no pop up dimensions set (the one I featured above) and the second with dimensions (dimensions in red in the below excerpt from the demo):
Code:
<a href="javascript:enlargeimage('dynamicbook1.gif', 300, 300)"><img src="dynamicbook1.gif" border=1></a>
Bookmarks