View Single Post
  #8  
Old 3rd June 2008, 21:53
GaBoNtZ's Avatar
GaBoNtZ GaBoNtZ is offline
Senior Member
 
Join Date: Mar 2008
P2P
Posts: 113
Default Re: Instead of header.jpg how to use header.swf
yes, you need to delete in style.css the "header.jpg" link.
style.css
Code:
#header
{ 
	margin: 0; 
	width: 950px; 
	background: #303030 /*url('../images/header.jpg') no-repeat center top*/;  
	height: 149px; 
	color: #FFF 
}
and for the slide menu try with :
Code:
<center>
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="900" height="149">
<param name="movie" value="http://westrockradio.dyndns.org/tracker/include/templates/bmw/astrality1.swf">
<param name="wmode" value="transparent"> 
<param name="quality" value="high">
<embed wmode="transparent" src="http://westrockradio.dyndns.org/tracker/include/templates/bmw/astrality1.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="900" height="149"></embed>
</object></center>
for me is working.
if you whant it over the flash. as i see on printscreen now is back the flash.
observe <param name="wmode" value="transparent"> and <embed wmode="transparent"
hope it was helpfull :P

[hr:10x2bfab]
[hr:10x2bfab]
EDIT:
[hr:10x2bfab]
[hr:10x2bfab]

solved the links also!
to not write the links manually in header.php use this code:
Code:
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="950" height="149">
<param name="movie" value=".$BASEURL./include/templates/'.$defaulttemplate.'/MOVIE.swf">
<param name="wmode" value="transparent"> 
<param name="quality" value="high">
<embed wmode="transparent" src="'.$BASEURL.'/include/templates/'.$defaulttemplate.'/MOVIE.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="950" height="149"></embed>
</object>
Reply With Quote