What I don't get is why the code that the desktop gallery creates doesn't seem to work and we have to find the code elsewhere here... ?
The embedding code provided on the 'Publish' tab of JuiceboxBuilder-Lite works fine when following the embedding instructions here.
www.xtreme-remodeling.com is a subdomain of xtreme-remodeling.com and all your gallery files must be on the same domain or subdomain due to the JavaScript same origin policy. Please see this web page for further details.
Your gallery currently uses the following code:
<script src="http://www.xtreme-remodeling.com/dream-deck-gallery/jbcore/juicebox.js"></script>
... so the gallery will display only when you access it using http://www.xtreme-remodeling.com/dream-decks.htm (and not http://xtreme-remodeling.com/dream-decks.htm).
Use relative paths within your embedding code and your gallery should display at both www.xtreme-remodeling.com and xtreme-remodeling.com
<!--START JUICEBOX EMBED-->
<script src="dream-deck-gallery/jbcore/juicebox.js"></script>
<script>
new juicebox({
configUrl: "dream-deck-gallery.xml",
containerId : "juicebox-container",
baseUrl : 'dream-deck-gallery/',
galleryWidth: "100%",
galleryHeight: "100%",
backgroundColor: "#222222"
});
</script>
<div id="juicebox-container"></div>
<!--END JUICEBOX EMBED-->
FINALLY... I READ ANOTHER POST TALKING ABOUT THE config / XML FILE BEING RENAMED... And discovered, MY CODE HAD NEVER EVEN "CALLED" THAT FILE... SO I ADDED THE configURL to this code, PLUS renamed my file to mygallery.xml... Not clear if it should have been named the actual gallery name? - so I also tried it with the actual gallery name included in the code and the name of the xml. SAME RESULT. :(
If your gallery's XML file is named 'config.xml' (which it is by default when creating a gallery with JuiceboxBuilder-Lite) and is located in the same directory as the HTML page continaing the embedding code, then there is no need to use the configUrl configuration option. (You will need to specify a configUrl only if you rename or move your gallery's XML file.