Banner flash on the top profile 2 |
![]() ![]() |
Banner flash on the top profile 2 |
![]()
Post
#1
|
|
Newbie ![]() Group: Member Posts: 8 Joined: Nov 2009 Member No: 751,765 ![]() |
Hi!
Pls I need help...I can't put my top flash banner with profile 2 (profile 1 worked ok). My code was: CODE <style> body{ background-position:top center;margin-top: 500;} div.topbanner { top: 0; left: 50%; margin-left: -443px; width: 800; height: 500px; position: absolute; background-color: black; } </style> <div class="topbanner"> <object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,5,0,175" width="855" height="500"><param name="movie" value="http://up2share.com/file/myswf.swf" /><param name=FlashVars value="clickTAG=" /><param name="menu" value="false" /><param name="scale" value="exactfit" /><param name="AllowScriptAccess" value="always" /><embed src="http://up2share.com/file/myswf.swf" FlashVars="clickTAG=" width="855" height="500" menu="true" scale="exactfit" AllowScriptAccess="always" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" /></object> </div> Why??? Thx!
Reason for edit: Please use [codebox] tags instead of [code] tags when posting longer codes. - Mike
|
|
|
![]()
Post
#2
|
|
Member ![]() ![]() Group: Member Posts: 25 Joined: Feb 2009 Member No: 715,788 ![]() |
are you separating your HTML and CSS?
|
|
|
![]()
Post
#3
|
|
![]() Treasure Pleasure ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Group: Head Staff Posts: 11,193 Joined: Oct 2005 Member No: 281,127 ![]() |
Yes, this bit needs to go into the CSS section:
CODE body{ background-position:top center;margin-top: 500;} div.topbanner { top: 0; left: 50%; margin-left: -443px; width: 800; height: 500px; position: absolute; background-color: black; } Leave out the <style> tags then just place this wherever: CODE <div class="topbanner">
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,5,0,175" width="855" height="500"><param name="movie" value="http://up2share.com/file/myswf.swf" /><param name=FlashVars value="clickTAG=" /><param name="menu" value="false" /><param name="scale" value="exactfit" /><param name="AllowScriptAccess" value="always" /><embed src="http://up2share.com/file/myswf.swf" FlashVars="clickTAG=" width="855" height="500" menu="true" scale="exactfit" AllowScriptAccess="always" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" /></object> </div> |
|
|
![]() ![]() |