Ti allego il mio index.php ho inserito quel codice tra hornav e showcase...probabilmente sbaglio qualcosa:
<?php
defined('_JEXEC') or die;
JPlugin::loadLanguage( 'tpl_SG1' );
$app = JFactory::getApplication();
JHTML::_('behavior.mootools');
?>
<!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; ?>" dir="<?php echo $this->direction; ?>" >
<head>
<jdoc:include type="head" />
<link rel="stylesheet" href="templates/system/css/system.css" type="text/css" />
<link rel="stylesheet" href="templates/<?php echo $this->template ?>/css/<?php echo $this->params->get('colorStyle'); ?>.css" type="text/css" />
<link rel="stylesheet" href="<?php echo $this->baseurl ?>/templates/j51_nebulous/css/template.css" type="text/css" media="screen,projection" />
<script type="text/javascript" src="<?php echo $this->baseurl ?>/templates/<?php echo $this->template ?>/js/UvumiDropdown.js"></script>
<script type="text/javascript">
var menu = new UvumiDropdown('moomenu');
</script>
</head>
<!--[if IE 7]>
<link rel="stylesheet" href="<?php echo $this->baseurl ?>/templates/j51_nebulous/css/ie7.css" rel="stylesheet" type="text/css" />
<script type="text/javascript">
window.addEvent('domready', function(){
var menu_li_els = document.getElementById('hornav').firstChild.childNodes;
for(var i=0;i<menu_li_els.length; i++) {
menu_li_els[i].insertBefore(document.createElement('div'), menu_li_els[i].lastChild);
}
});
</script>
<![endif]-->
<!--[if IE 6]>
<script type="text/javascript" src="<?php echo $this->baseurl ?>/templates/<?php echo $this->template ?>/js/fix-png-ie6.js"></script>
<script type="text/javascript" >
DD_belatedPNG.fix('.png, img.png, #header, #base_bg');
</script>
<script type="text/javascript">
window.addEvent('domready', function(){
var menu_li_els = document.getElementById('hornav').firstChild.childNodes;
for(var i=0;i<menu_li_els.length; i++) {
menu_li_els[i].insertBefore(document.createElement('div'), menu_li_els[i].lastChild);
}
});
</script>
<link rel="stylesheet" href="<?php echo $this->baseurl ?>/templates/j51_awaken/css/ie6.css" rel="stylesheet" type="text/css" />
<script src="<?php echo $this->baseurl ?>/templates/<?php echo $this->template?>/js/ie6/warning.js"></script><script>window.onload=function(){e("<?php echo $this->baseurl ?>/templates/<?php echo $this->template?>/js/ie6/")}</script>
<![endif]-->
<?php
if($this->countModules('left') == 0) $contentwidth = "100";
if($this->countModules('left') >= 1) $contentwidth = "80";
?>
<body>
<div id="body_bg">
<div id="wrapper">
<div id="header">
<div class="search">
<jdoc:include type="modules" name="search" />
</div>
<div class="logo_container">
<?php if($this->params->get('logoType') == 'image') : ?>
<h1 class="logo"> <a href="index.php" title="<?php echo $siteName; ?>"><span>
<?php echo $siteName; ?>
</span></a> </h1>
<?php else : ?>
<h1 class="logo-text"> <a href="index.php" title="<?php echo $this->params->get('siteName'); ?>"><span>
<?php echo $this->params->get('logoText'); ?>
</span></a> </h1>
<p class="site-slogan"><?php echo $this->params->get('sloganText'); ?></p>
<?php endif; ?>
</div>
</div>
<div id="top">
<div id="hornav">
<jdoc:include type="modules" name="hornav" />
</div>
</div>
<?php if($this->countModules('impe')) : ?>
<div id="impe"><br /><jdoc:include type="modules" name="impe" style="xhtml" />
</div>
<?php endif; ?>
<div id="content_wrapper">
<?php if ($this->countModules( 'showcase' )) : ?>
<div id="showcase">
<div id="showcase_overlay"></div>
<jdoc:include type="modules" name="showcase" style="none" />
</div>
<?php endif; ?>
<div id="content_header">
<?php if ($this->countModules( 'breadcrumb' )) : ?>
<div class="breadcrumbs_bg">
<jdoc:include type="module" name="breadcrumbs" style="none" />
</div>
<?php endif; ?>
<?php if ($this->countModules( 'left' )) : ?>
<div id="leftcol">
<div class="leftpadding">
<div class="moduletable">
<jdoc:include type="modules" name="left" style="j51_module" />
</div>
</div>
</div>
<?php endif; ?>
<div id="content<?php echo $contentwidth; ?>">
<div class="inside">
<?php if ($this->countModules( 'user1 or user2' )) : ?>
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<?php if ($this->countModules( 'user1' )) : ?>
<td valign="top">
<div class="moduletable3">
<jdoc:include type="modules" name="user1" style="j51_module" />
</div></td>
<?php endif; ?>
<?php if ($this->countModules( 'user2' )) : ?>
<td valign="top">
<div class="moduletable3">
<jdoc:include type="modules" name="user2" style="j51_module" />
</div>
</td>
<?php endif; ?>
</tr>
</table>
<?php endif; ?>
<div class="maincontent">
<div class="message">
<?php if ($this->getBuffer( 'message' )) : ?>
<jdoc:include type="message" />
<?php endif; ?>
</div>
<jdoc:include type="component" />
</div>
<?php if ($this->countModules( 'user3 or user4' )) : ?>
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<?php if ($this->countModules( 'user3' )) : ?>
<td valign="top">
<div class="moduletable3">
<jdoc:include type="modules" name="user3" style="j51_module" />
</div></td>
<?php endif; ?>
<?php if ($this->countModules( 'user4' )) : ?>
<td valign="top">
<div class="moduletable3">
<jdoc:include type="modules" name="user4" style="j51_module" />
</div>
</td>
<?php endif; ?>
</tr>
</table>
<?php endif; ?>
</div>
</div>
</div>
<div id="base"> </div>
</div>
<div id="base_bg"> </div>
<div class="container_4module_base">
<?php if ($this->countModules( 'user5' )) : ?>
<div class="moduletablebase">
<jdoc:include type="modules" name="user5" style="j51_module" />
</div>
<?php endif; ?>
<?php if ($this->countModules( 'user6' )) : ?>
<div class="moduletablebase">
<jdoc:include type="modules" name="user6" style="j51_module" />
</div>
<?php endif; ?>
<?php if ($this->countModules( 'user7' )) : ?>
<div class="moduletablebase">
<jdoc:include type="modules" name="user7" style="j51_module" />
</div>
<?php endif; ?>
<?php if ($this->countModules( 'user8' )) : ?>
<div class="moduletablebase">
<jdoc:include type="modules" name="user8" style="j51_module" />
</div>
<?php endif; ?>
</div>
</div>
<?php if ($this->countModules( 'banner' )) : ?>
<div id="banner">
<div class="inside">
<jdoc:include type="modules" name="banner" style="none" />
</div>
</div>
<?php endif; ?>
<div id="footer">
<div class="inside">
<jdoc:include type="modules" name="footer" style="none" />
<p>
<?php echo $this->params->get('footer'); ?>
</p>
<p align="center">
<!-- Histats.com START (standard)-->
<script type="text/javascript">document.write(unescape("%3Cscript src=%27http://s10.histats.com/js15.js%27 type=%27text/javascript%27%3E%3C/script%3E"));</script>
<a href="http://www.histats.com" target="_blank" title="histats.com - statistiche web" >
<script type="text/javascript" >
try {Histats.start(1,1031012,4,1037,150,25,"00000010");
Histats.track_hits();} catch(err){};
</script>
</a> <noscript><a href="http://www.histats.com" target="_blank"><img src="http://sstatic1.histats.com/0.gif?1031012&101" alt="histats.com - statistiche web" border="0"></a></noscript>
<!-- Histats.com END -->
</p>
</div>
</div>
<!--end of wrap-->
</div></body>
</html>