via PayPal / credit card
Vanilla 1.1.10 is a product of Lussumo. More Information: Documentation, Community Support.
Hi I have a slideshow that works great in firefox however the same show is missing one of the images in IE and Chrome browsers. I have tried various images including ones that are ok in other positions it seems like the first top lest thumbnail and main image just don't want to appear in those two browsers. This is for an up and coming competition so I need to fix this asap so any help/past experiences would be greatly appreciated
The slideshow:
http://www.onlyapony.com/competition.php
Hi,
your code is currently:
<code><div class="slideshow">
<div id="monoSlideshow">
<p><strong>Please install Flash® and turn on Javascript.</strong></p>
</div>
<script type="text/javascript">
// <![CDATA[
var so = new SWFObject("monoslideshow.swf", "SOmonoSlideshow", "620", "320", "7", "#ffffff");
so.addVariable("dataFile", "/shop/monoslideshow.xml")
so.write("monoSlideshow");
so.addVariable("showLogo", "false");
so.addVariable("showVersionInfo", "false");
so.write("mssHolder");
// ]]>
</script>
</div>
</code>
The outer div doesn't make sense, but shouldn't hurt either.
What hurts more is the double so.write. I would try
<code><div class="slideshow">
<div id="monoSlideshow">
<p><strong>Please install Flash® and turn on Javascript.</strong></p>
</div>
<script type="text/javascript">
// <![CDATA[
var so = new SWFObject("monoslideshow.swf", "SOmonoSlideshow", "620", "320", "7", "#ffffff");
so.addVariable("dataFile", "/shop/monoslideshow.xml")
so.addVariable("showLogo", "false");
so.addVariable("showVersionInfo", "false");
so.write("monoSlideshow");
// ]]>
</script>
</div>
</code>
Christoph
Ah yes - when looking at your xml Firefox reports a "missing or wrong xml declaration". That is definitely worth investigating also.
Christoph
1 to 3 of 3