You can set the background to be transparent in svBuilder by selecting the 'Background Transparent' checkbox on the 'Customize' screen.
On sv-Builder-Pro, the 'Background Transparent' checkbox can be found in the 'Customize -> Embed Options' section.
http://simpleviewer.net/simpleviewer/su … ml#embed_6
Please note that the background will not be transparent in fullscreen mode.
If you want to set a background color for fullscreen mode, you can set the bgcolor Flash parameter in the embedding code like this:
<!--START SIMPLEVIEWER EMBED.-->
<script type="text/javascript" src="svcore/js/simpleviewer.js"></script>
<script type="text/javascript">
var params={};
params.bgcolor="ffffff";
jQuery(document).ready(function () {
SV.simpleviewer.load("sv-container", "100%", "100%", "222222", true, null, params);
});
</script>
<div id="sv-container"></div>
<!-- END SIMPLEVIEWER EMBED -->
Steven Speirs
SimpleViewer Support Team