Topic: Juicebox gallery didn't work in Muse! [SOLVED]

I work with Muse because I have only smal knowing about html.
My created Test-Gallery does not work.
I followed the instruction "embedding with Aobe Muse"!!
Point 1- 4 is claer.
Point 5 not. Where must I do these settings?

Is there a place with instructions for dummies?

Re: Juicebox gallery didn't work in Muse! [SOLVED]

Step 5 in the Embedding with Adobe Muse instructions refers to setting the gallery height in the embedding code.
If your embedding code currently looks something like this:

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

... then you can change the gallery height (to something like 600px) in the galleryHeight line as follows:

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

For reference (and to help anyone else reading this thread), instructions for embedding a Juicebox gallery into Adobe Muse can be found here: http://www.juicebox.net/support/embeddi … adobe-muse

There are alternate embedding instructions here: http://www.muse-themes.com/blogs/news/6 … adobe-muse

Re: Juicebox gallery didn't work in Muse! [SOLVED]

Thank you for your explanation and pointing to Muse Themes!

Re: Juicebox gallery didn't work in Muse! [SOLVED]

You're welcome!