ok, l'ho aggiunto nel body dell'index.php, e sono riuscito a "spostarlo", ma non riesco ancora a settarlo bene. inoltre il breadcumb non c'è nel file template.css, quindi non riesco a trovare i parametri per settarlo a dovere. come faccio?
questo è il mio index:
<?php
defined( '_JEXEC' ) or die( 'Restricted access' );
define( 'TEMPLATEPATH', dirname(__FILE__) );
JHTML::_('behavior.mootools');?>
<?php include_once(JPATH_ROOT . "/templates/" . $this->template . '/config/tools.php'); ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo $this->language; ?>" lang="<?php echo $this->language; ?>">
<head>
<?php include_once(JPATH_ROOT . "/templates/" . $this->template . '/config/head.php'); ?>
</head>
<body>
<?php /*Aggiungo la nuova posizione modulo */?>
<?php if ($this->countModules('centralbreadcrumb')) : ?>
<div id="centralbreadcrumb">
<jdoc:include type="modules" name="centralbreadcrumb" style="xhtml" />
</div>
<?php endif; ?>
<?php /*Fine aggiunta nuova posizione modulo*/?>
<?php include_once(JPATH_ROOT . "/templates/" . $this->template . '/scripts/php/ie.php'); ?>
<?php include_once(JPATH_ROOT . "/templates/" . $this->template . '/blocks/panel.php'); ?>
<?php include_once(JPATH_ROOT . "/templates/" . $this->template . '/blocks/main.php'); ?>
<?php include_once(JPATH_ROOT . "/templates/" . $this->template . '/blocks/userbottom.php'); ?>
<?php include_once(JPATH_ROOT . "/templates/" . $this->template . '/blocks/footer.php'); ?>
</body>
</html>