Hello,
It isn't issue with z-index, this problem with flash object on your page. It requires wmode="transparent" attribute that it'll be transparent. In other words, now HTML code for this flash looks like:
Code: |
<object width="700" height="500" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" id="o">
<param value="http://apps.cooliris.com/embed/cooliris.swf" name="movie">
<param value="true" name="allowFullScreen">
<param value="always" name="allowScriptAccess">
<param value="feed=http://www.chelseadegreeshow.org/2010/images/stories/bonckowall6b907c9b432f6c98f73518baf5e8b398.rss&backgroundColor=#000000&descriptionHeight=50&glowColor=#000000&numRows=1&showChrome=true&showDescription=true&showReflections=true&showEmbed=true&showSearch=true&showNavArrows=true&customButton=http://home.boncko.it/plugins/content/BonckoWall/boncko.jpg,http://www.boncko.it&tilt=3" name="flashvars">
<embed width="700" height="500" align="r" allowscriptaccess="always" allowfullscreen="true" flashvars="feed=http://www.chelseadegreeshow.org/2010/images/stories/bonckowall6b907c9b432f6c98f73518baf5e8b398.rss&backgroundColor=#000000&descriptionHeight=50&glowColor=#000000&numRows=1&showChrome=true&showDescription=true&showReflections=true&showEmbed=true&showSearch=true&showNavArrows=true&customButton=http://home.boncko.it/plugins/content/BonckoWall/boncko.jpg,http://www.boncko.it&tilt=3" src="http://apps.cooliris.com/embed/cooliris.swf" type="application/x-shockwave-flash">
</object>
|
but it should be
Code: |
<object width="700" height="500" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" id="o">
<param value="http://apps.cooliris.com/embed/cooliris.swf" name="movie">
<param value="true" name="allowFullScreen">
<param value="always" name="allowScriptAccess">
<param value="wmode" name="transparent">
<param value="feed=http://www.chelseadegreeshow.org/2010/images/stories/bonckowall6b907c9b432f6c98f73518baf5e8b398.rss&backgroundColor=#000000&descriptionHeight=50&glowColor=#000000&numRows=1&showChrome=true&showDescription=true&showReflections=true&showEmbed=true&showSearch=true&showNavArrows=true&customButton=http://home.boncko.it/plugins/content/BonckoWall/boncko.jpg,http://www.boncko.it&tilt=3" name="flashvars">
<embed wmode="transparent" width="700" height="500" align="r" allowscriptaccess="always" allowfullscreen="true" flashvars="feed=http://www.chelseadegreeshow.org/2010/images/stories/bonckowall6b907c9b432f6c98f73518baf5e8b398.rss&backgroundColor=#000000&descriptionHeight=50&glowColor=#000000&numRows=1&showChrome=true&showDescription=true&showReflections=true&showEmbed=true&showSearch=true&showNavArrows=true&customButton=http://home.boncko.it/plugins/content/BonckoWall/boncko.jpg,http://www.boncko.it&tilt=3" src="http://apps.cooliris.com/embed/cooliris.swf" type="application/x-shockwave-flash">
</object>
|
Regards,
ARI Soft