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