Hi all
I'm using a SWF element in the header template of my vB4 board.
It works correcly from a graphic point of view, but I know that there are some problems with the W3 markup validation:
This is the code, that I founded somewhere (I don't remember where):
Code:
<div id="header" class="floatcontainer doc_header">
<div>
<param name="movie" value="Logo.swf" />
<param name="quality" value="high" />
<param name="allowScriptAccess" value="always" />
<param name="wmode" value="transparent">
<embed src="http://www.mysite.com/images/misc/Logo.swf"
quality="high"
type="application/x-shockwave-flash"
WMODE="transparent"
width="950"
height="180"
pluginspage="http://www.macromedia.com/go/getflashplayer"
allowScriptAccess="always" />
</object>
</div>
Can you help me to understand what is wrong or can you suggest me some other piece of code?
Thank you in advance!