Topic: Multiple Galleries on Same Wordpress Page
I'm using Juicebox Pro on a hosted Wordpress site. On some pages I need to create multiple galleries on the same page/post. I understand the concept of using separate gallery folders & the Base URL for each gallery. What I don't get is how to give each a different containerID & where to do that. Any help would be appreciated. Thanks.
This is what my embeds look like:
<!--START JUICEBOX EMBED-->
<script src="http://www.mywebsite.com/_juicebox/First-Gallery/jbcore/juicebox.js"></script>
<script>
new juicebox({
baseUrl : "http://www.mywebsite.com/_juicebox/First-Gallery",
containerId : "juicebox-container",
galleryWidth: "560",
galleryHeight: "750",
thumbWidth: "50",
thumbHeight: "50",
backgroundColor: "rgba(255,255,255,1)"
});
</script>
<div id="juicebox-container"></div>
<!--END JUICEBOX EMBED-->
Some other text here. Some other text here. Some other text here.
Some other text here. Some other text here. Some other text here.
Some other text here. Some other text here. Some other text here.
<!--START JUICEBOX EMBED-->
<script src="http://www.mywebsite.com/_juicebox/Gallery-Two/jbcore/juicebox.js"></script>
<script>
new juicebox({
baseUrl : "http://www.mywebsite.com/_juicebox/Gallery-Two",
containerId : "juicebox-container",
galleryWidth: "560",
galleryHeight: "750",
thumbWidth: "50",
thumbHeight: "50",
backgroundColor: "rgba(255,255,255,1)"
});
</script>
<div id="juicebox-container"></div>
<!--END JUICEBOX EMBED-->