via PayPal / credit card
Vanilla 1.1.10 is a product of Lussumo. More Information: Documentation, Community Support.
Hi
I cannot seem to set the width and height of my swf file.
I want 980 x 120 but these are not the dimensions when viewing the swf file
The html looks like this.
<body>
<div id="monoSlideshow">
<p><strong>Temporary holder for the Flash® object</strong></p>
</div>
<script type= "text/javascript">
var so = new SWFObject("monoslideshow.swf", "SOmonoSlideshow", "980", "120", "7", "#ffffff");
so.addVariable("showLogo", "false");
so.addVariable("showVersionInfo", "false");
so.write("monoSlideshow");
</script>
</body>
Can aybody help?
/Mark
Hi,
set the width and height of the div with CSS, for example
<code>div#monoslideshow {
width:980px;
height:120px;
}</code>
Christoph
1 to 2 of 2