Topic: Another 'Config XML file not found' problem [SOLVED]

I'm certain that my URL's are correct, but I'm getting the - 'Juicebox Error: Config XML file not found.' message. Would someone please check and see if I've got a problem in my embed?

http://ciproweb.com/sadlerconstructionnc/gallery.html

Thanks!!

Re: Another 'Config XML file not found' problem [SOLVED]

Your baseUrl entry is in the wrong place. It needs to be inside the new juicebox({ ... }); section.
Change:

<!--START JUICEBOX EMBED-->
<script src="http://ciproweb.com/sadlerconstructionnc/gallery/jbcore/juicebox.js"></script>
<script>
new juicebox({
containerId: "juicebox-container",
galleryWidth: "100%",
galleryHeight: "100%",
backgroundColor: "rgba(93,93,93,1)"
});
</script>
<div id="juicebox-container"></div>
baseUrl : 'http://ciproweb.com/sadlerconstructionnc/gallery/',
<!--END JUICEBOX EMBED-->

... to:

<!--START JUICEBOX EMBED-->
<script src="http://ciproweb.com/sadlerconstructionnc/gallery/jbcore/juicebox.js"></script>
<script>
    new juicebox({
        baseUrl : 'http://ciproweb.com/sadlerconstructionnc/gallery/',
        containerId: "juicebox-container",
        galleryWidth: "100%",
        galleryHeight: "100%",
        backgroundColor: "rgba(93,93,93,1)"
    });
</script>
<div id="juicebox-container"></div>
<!--END JUICEBOX EMBED-->

Re: Another 'Config XML file not found' problem [SOLVED]

Thanks! Shows how well I follow instructions...

Re: Another 'Config XML file not found' problem [SOLVED]

No problem.
I'm glad it was an easy fix!