It's not the background that needs to be transparent, rather the wmode. It's unclear to me exactly how you do that with simpleviewer. It would be something like** (additions red):
Code:
<!--START SIMPLEVIEWER EMBED -->
<script type="text/javascript" src="svcore/js/simpleviewer.js"></script>
<script type="text/javascript">
var flashvars = {};
var params = {};
params.wmode = 'transparent';
simpleviewer.ready(function () {
simpleviewer.load('sv-container', '895px', '725px', 'FFFFFF', true, flashvars, params);
});
</script>
<div id="sv-container"></div>
<!--END SIMPLEVIEWER EMBED -->
The browser cache may need to be emptied and or the page refreshed to see changes.
**I tested this and it appears to work - for solving the issue in Safari. However, if you need more help on how to add this (wmode transparent) see simpleviewer's help and support pages. That's where I checked, and the above appears to be the recommended and working method for use with your current syntax. Feel free to ask me additional questions about this though.
My sources:
http://www.simpleviewer.net/forum/vi...c.php?id=11385
and:
http://www.simpleviewer.net/simplevi...ng.html#params
Bookmarks