Topic: How to have a transparent background ?

Simply want to have a transparent background like on simple viewer !
so how ?
thanks...

Re: How to have a transparent background ?

Use a background color with an opacity value (the 4th rgba parameter) to 0.
If using JuiceboxBuilder-Lite to create or edit your gallery, just set the 'Background Color Opacity' to 0 in the 'Customize' section.
Your embedding code will look something like this:

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