Vorrei sostituire nel tema MARINELLI per d6 l'header, sostituendo l'immagine di background con un file in flash.
Ho provato ad inserire nel page.tpl.php il codice html per il file flash
<div id="header">
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#vers... id="header" width="970" height="200">
<param name="movie" value="header.swf">
<param name="quality" value="high">
<param name="bgcolor" value="#FFFFFF">
<embed name="header" src="header.swf"
quality="high" bgcolor="#FFFFFF" swLiveConnect="true"
width="970" height="200"
type="application/x-shockwave-flash"
pluginspage="<?php" rel="nofollow">http://www.macromedia.com/go/getflashplayer"></embed>
</object></a>
<?php if ($site_name) : ?>
<?php if ($is_front) : /* if we are on the front page use <h1> for site title */ ?>
<h1 class="sitetitle">
<a href="<?php print $base_path ?>" title="<?php print t('Home') ?>">
<?php print $site_name ?>
</a>
</h1>
<?php endif; ?>
<?php if (!$is_front) : /* otherwise use <p> and let node title use <h1> for SEO */ ?>
<p class="sitetitle">
<a href="<?php print $base_path ?>" title="<?php print t('Home') ?>">
<?php print $site_name ?>
</a>
</p>
<?php endif; ?>
<?php endif; ?>
<?php if ($site_slogan){?>
<p class="slogan"><?php print $site_slogan ?></p>
<?php } ?>
</div>
Pero' mi sballa tutto.....chi mi consiglia qualcosa?