diciamo che provando ad inserire un banner flsh mi diventa più difficile...
questo il codice della index:
----index.php------
<div class="art-header-center">
<?php /*Aggiungo la nuova posizione modulo */?>
<?php if ($this->countModules('header_home')) : ?>
<div id="nuovo_div">
<jdoc:include type="modules" name="header_home" style="xhtml" />
</div>
<?php endif; ?>
<?php /*Fine aggiunta nuova posizione modulo*/?>
<?php /*Aggiungo la nuova posizione modulo */?>
<?php if ($this->countModules('header_chisiamo')) : ?>
<div id="nuovo_div2">
<jdoc:include type="modules" name="header_chisiamo" style="xhtml" />
</div>
<?php endif; ?>
<?php /*Fine aggiunta nuova posizione modulo*/?>
<jdoc:include type="component" /> </div>
-----Css-----
#nuovo_div
{
background-image: url('../images/header.jpg');
background-position: center center;
background-repeat: no-repeat;
float: left;
width:1000px;
height: 400px;
}
#nuovo_div2
{
background-image: url('../images/header_.jpg');
background-position: center center;
background-repeat: no-repeat;
float: left;
width:1000px;
height: 400px;
}
Ma i diversi banner flash non riesco ad inserirli.
questo il codice che solitamente metto nella index.php tra i div header..
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="
http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"
width="1000" height="350>
<param name="width" value="1000" />
<param name="height" value="350" />
<param name="src" value="templates/xxx/images/xxx.swf" />
<embed type="application/x-shockwave-flash" width="1000" height="350" src="/templates/xxx/images/xxx.swf" quality="high" wmode="transparent">
</embed>
</object>
Come faccio dunque per poter visualizzare il flash?
dove inserisco questo codice?
ho provato tra:
<div id="nuovo_div2">
<object>.....</object> <jdoc:include type="modules" name="header_chisiamo" style="xhtml" />
</div>
ma niente...