Ho un sito con template beez. Vorrei dividere l'intestazione in due parti, una posizione per il logo e una per una galleria di immagini. Ho seguito istruzioni ma non funziona.
Ho creato nuova posizione "gallery" in templateDetails:
[size=78%]<positions>[/size]
[size=78%] <position>left</position>[/size]
<position>right</position>
<position>top</position>
<position>breadcrumb</position>
<position>user1</position>
[size=78%]<position>gallery</position>[/size]
</positions>
Ho aggiunto nuova posizione in index.php dentro l'head:
<head>
<?php /*Aggiungo la nuova posizione modulo */?>
<?php if ($this->countModules ('gallery')) : ?>
<div id="nuovo_div">
<jdoc:include type="modules" name="gallery" style="xhtml" />
<>
<?php endif; ?>
<?php /*Fine aggiunta nuova posizione modulo*/?>
<jdoc:include type="head" />
<link rel="stylesheet" href="<?php echo $this->baseurl ?>/templates/<?php echo $this->template;?>/css/template.css" type="text/css" />
<link rel="stylesheet" href="<?php echo $this->baseurl ?>/templates/<?php echo $this->template;?>/css/position.css" type="text/css" media="screen,projection" />
<link rel="stylesheet" href="<?php echo $this->baseurl ?>/templates/<?php echo $this->template;?>/css/layout.css" type="text/css" media="screen,projection" />
<link rel="stylesheet" href="<?php echo $this->baseurl ?>/templates/<?php echo $this->template;?>/css/print.css" type="text/css" media="Print" />
<link rel="stylesheet" href="<?php echo $this->baseurl ?>/templates/<?php echo $this->template;?>/css/general.css" type="text/css" />
<?php if($this->direction == 'rtl') : ?>
<link rel="stylesheet" href="<?php echo $this->baseurl ?>/templates/<?php echo $this->template;?>/css/template_rtl.css" type="text/css" />
<?php endif; ?>
<!--[if lte IE 6]>
<link href="<?php echo $this->baseurl ?>/templates/<?php echo $this->template;?>/css/ieonly.css" rel="stylesheet" type="text/css" />
<![endif]-->
<!--[if IE 7]>
<link href="<?php echo $this->baseurl ?>/templates/<?php echo $this->template;?>/css/ie7only.css" rel="stylesheet" type="text/css" />
<![endif]-->
<script type="text/javascript" src="<?php echo $this->baseurl ?>/templates/<?php echo $this->template;?>/javascript/md_stylechanger.js"></script>
</head>
Infine ho modificato template.css:
#nuovo_div {
float: right;
width:50%; }
Quindi ho settato rokslideshow nella posizione "gallery".
Risultato: zero. Nessun effetto e andando sull'anteprima struttura del template non vedo la nuova posizione creata.
Qualcuno mi aiuta? Grazie
m