Gordyne
05-25-2012, 11:37 PM
Hi, i'm new to html/css and I am developing a website throug webnode.
I also have a swf file that I need to show in the header, however, it isn't showing and i'm pretty sure it has to do with the path that I'm setting.
The swf setting is in the same directory wich contains my index and the css, js, img folders.
Here's the code:
<!-- HEADER -->
<div id="header">
<div id="container" style="float: right">
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0" height="180" width="500">
<param name="movie" value="produzarte.swf" />
<param name="wmode" value="transparent" />
<embed height="180" pluginspage="http://www.macromedia.com/go/getflashplayer" quality="high" src="produzarte.swf" type="application/x-shockwave-flash" width="500" wmode="transparent">
</embed>
</object>
</div>
</div><!-- /header -->
<!-- /HEADER -->
#header {
width: 960px;
height: 183px;
padding: 0;
margin: 0;
display: block;
background: url(../img/header.png) bottom right no-repeat;
overflow: hidden;
}
#container{
width: 500px;
height: 180px;
position: relative;
}
Ive tried "../produzarte.swf", "/produzarte" but nothing.
Thanks in advance.
I also have a swf file that I need to show in the header, however, it isn't showing and i'm pretty sure it has to do with the path that I'm setting.
The swf setting is in the same directory wich contains my index and the css, js, img folders.
Here's the code:
<!-- HEADER -->
<div id="header">
<div id="container" style="float: right">
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0" height="180" width="500">
<param name="movie" value="produzarte.swf" />
<param name="wmode" value="transparent" />
<embed height="180" pluginspage="http://www.macromedia.com/go/getflashplayer" quality="high" src="produzarte.swf" type="application/x-shockwave-flash" width="500" wmode="transparent">
</embed>
</object>
</div>
</div><!-- /header -->
<!-- /HEADER -->
#header {
width: 960px;
height: 183px;
padding: 0;
margin: 0;
display: block;
background: url(../img/header.png) bottom right no-repeat;
overflow: hidden;
}
#container{
width: 500px;
height: 180px;
position: relative;
}
Ive tried "../produzarte.swf", "/produzarte" but nothing.
Thanks in advance.