Topic: Help with adding a gallery to Adobe Muse
Hey all!
Similar problem here. Trying to embed Juicebox into Muse and it's just not showing up!
It's accessible here:
http://www.adrialdesigns.com/sites/burk/juicebox
Any help would be so much appreciated!
Here's my code (very similar to the code above):
<!--START JUICEBOX EMBED-->
<script src="http://www.adrialdesigns.com/sites/burk/juicebox/jbcore/juicebox.js"></script>
<script>
new juicebox({
containerId: "juicebox-container",
baseUrl : 'http://www.adrialdesigns.com/sites/burk/juicebox/',
galleryWidth: "100%",
galleryHeight: "100%",
backgroundColor: “#FFFFFF”
});
</script>
<div id="juicebox-container">
<!-- Image gallery content for non-javascript devices -->
<noscript>
<h1></h1>
<p></p>
<p><img src="images/01-Family-Named-Spot.jpg" title="01-Family-Named-Spot" alt="" /><br>01-Family-Named-Spot </p>
<p><img src="images/02-Flag-Porch.jpg" title="02-Flag-Porch" alt="" /><br>02-Flag-Porch </p>
<p><img src="images/03-White-Water-Nash.jpg" title="03-White-Water-Nash" alt="" /><br>03-White-Water-Nash </p>
<p><img src="images/04-River-Bank-Dive.jpg" title="04-River-Bank-Dive" alt="" /><br>04-River-Bank-Dive </p>
<p><img src="images/05-Danbury-State-Fair.jpg" title="05-Danbury-State-Fair" alt="" /><br>05-Danbury-State-Fair </p>
<p><img src="images/06-Short-Garage-and-Cow.jpg" title="06-Short-Garage-and-Cow" alt="" /><br>06-Short-Garage-and-Cow </p>
<p><img src="images/07-Red-Shag-Dash.jpg" title="07-Red-Shag-Dash" alt="" /><br>07-Red-Shag-Dash </p>
<p><img src="images/08-Man-with-Collards.jpg" title="08-Man-with-Collards" alt="" /><br>08-Man-with-Collards </p>
<p><img src="images/09-Man-with-Purple-Skirt.jpg" title="09-Man-with-Purple-Skirt" alt="" /><br>09-Man-with-Purple-Skirt </p>
<p><img src="images/10-Strong-Verticals.jpg" title="10-Strong-Verticals" alt="" /><br>10-Strong-Verticals </p>
<p><img src="images/11-Sex-Pit.jpg" title="11-Sex-Pit" alt="" /><br>11-Sex-Pit </p>
<p><img src="images/12-Popeye.jpg" title="12-Popeye" alt="" /><br>12-Popeye </p>
<p><img src="images/13-Acid-Park.jpg" title="13-Acid-Park" alt="" /><br>13-Acid-Park </p>
</noscript>
</div>
<!--END JUICEBOX EMBED-->