Ok, I created a gallery I like. I'm trying to embed it, does not work correctly.

I wrote support, and they told me....

It looks like you have copied and pasted the Juicebox embedding code at the very end of your 'Gallery' web page (just before the closing </body> tag).
The Juicebox embedding code (or more specifically the <div id="juicebox-container"><div> container) should be placed in your web page wherever you want the gallery to be displayed. The Juicebox embedding code should replace your existing gallery code but it looks like you might have just removed your existing gallery code and added the Juicebox embedding code to the end of the web page.

Now I just used the placeholder where I wanted the gallery to show up and replaced the HTML code in the pop up put the embedding code...

<!--START JUICEBOX EMBED-->
<script src="jbcore/juicebox.js"></script>
<script>
new juicebox({
containerId: "juicebox-container",
galleryWidth: "100%",
galleryHeight: "100%",
backgroundColor: "rgba(131,20,0,1)"
});
</script>
<div id="juicebox-container"></div>
<!--END JUICEBOX EMBED-->

It goes to the end of the document, just like support states, and NOT where I have my placeholder. Any ideas?