Topic: Gallery in wrong position on Web page

I just been successful in publishing my gallery on a test page of my simple website; however, no matter what I try, it is placed above a table which contains links to other pages on the website.  All the other pages have this table just below the banner for the site, so in its current location, it is not in keeping with the rest of the site.

The test gallery is on this page http://www.la-matha.com/Pictures_test.html whilst the existing flash gallery is here http://www.la-matha.com/Pictures.htm

Can anyone help me?  (Pages compiled using BlueGriffon)

Re: Gallery in wrong position on Web page

The <div> into which the gallery is embedded is placed in your web page above the <table> containing your links.
Move the code:

<div id="juicebox-container"></div>

... to below the closing </table> tag in your page.

Incidentally, you have two 'juicebox-container' <div>s on your page next to each other. You can safely delete one of them.

Re: Gallery in wrong position on Web page

Thank you - that has sorted it!

Denis