Scusa la mia ignoranza, ma provengo da wordpress e mi sa che sto facendo dei casini ! Sono andato a sbirciare se trovavo quello che mi dicevi, ma dall'editor di joomla non trovo nemmeno la stringa che dovevo cancellare

Ti posto il condice di index.php
del mio template ( il bello è che se vado ad analizzare la sorgente...trovo la stringa da correggere !
Quindi ....ah ho provato ad inserirla prima del </head> ma non compare nemmeno !
..... mi sento un pirla ....

<?php
/**
* @copyright Copyright (C) 2005 - 2008 Open Source Matters. All rights reserved.
* @license GNU/GPL, see LICENSE.php
* Joomla! is free software. This version may have been modified pursuant
* to the GNU General Public License, and as distributed it includes or
* is derivative of works licensed under the GNU General Public License or
* other free or open source software licenses.
* See COPYRIGHT.php for copyright notices and details.
*/
defined('_JEXEC') or die('Restricted access');
$url = clone(JURI::getInstance());
$path = $this->baseurl.'/templates/'.$this->template;
$showrightColumn = $this->countModules('right');
$showleftColumn = $this->countModules('left');
$showSliderColumn = $this->countModules('top');
if(JRequest::getCmd('task') != 'edit') $Edit = false; else $Edit = true;
?>
<!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" />
<script type="text/javascript" src="<?php echo $path ?>/scripts/jquery.min.js" ></script>
<script type="text/javascript" src="<?php echo $path ?>/scripts/jquery-ui.min.js" ></script>
<script type="text/javascript">
$(document).ready(function(){
$("#featured > ul").tabs({fx:{opacity: "toggle"}}).tabs("rotate", 5000, true);
});
</script>
<?php
$user =& JFactory::getUser();
if ($user->get('guest') == 1) {
$headerstuff = $this->getHeadData();
$scripts = $headerstuff['scripts'];
$headerstuff['scripts'] = array();
foreach($scripts as $url=>$type) {
if (strpos($url, 'js/mootools.js') === false && strpos($url, 'js/caption.js') === false && strpos($url, 'js/validate.js') === false) {
$headerstuff['scripts'][$url] = $type;
}
}
$this->setHeadData($headerstuff);
}
?>
<script type="text/javascript" src="<?php echo $path ?>/scripts/cufon-yui.js"></script>
<script type="text/javascript" src="<?php echo $path ?>/scripts/DINCondensedC_400.font.js"></script>
<script type="text/javascript" src="<?php echo $path ?>/scripts/cufon-replace.js"></script>
<script type="text/javascript" src="<?php echo $path ?>/scripts/maxheight.js"></script>
<!--equal-->
<link rel="stylesheet" href="<?php echo $path ?>/css/constant.css" type="text/css" />
<link rel="stylesheet" href="<?php echo $path ?>/css/template.css" type="text/css" />
<link rel="stylesheet" href="<?php echo $path ?>/css/imagegallery.css" type="text/css" />
<!--[if IE 6]>
<script type="text/javascript" src="<?php echo $path ?>/scripts/ie_png.js"></script>
<script type="text/javascript">
ie_png.fix('.png');
</script>
<![endif]-->
</head>
<body id="body" onload="new ElementMaxHeight(); ">
<table>
<tr>
<td class="tail-content-left"> </td>
<td class="main"><table class="main">
<tr>
<td class="width1 wrapper-center">
<!--header-->
<div class="row-logo clear">
<div class="fright">
<jdoc:include type="modules" name="user4" style="search" />
</div>
<div class="fleft">
<h1 id="logo"><a href="<?php echo $_SERVER['PHP_SELF']?>" title="Racioppi Hair Professional"><img title="Racioppi Hair Professional" src="<?php echo $path ?>/images/logo.jpg" class="png" alt="Racioppi Hair Professional" />[/url]</h1>
</div>
</div>
<div class="content-indent">
<div class="clear">
<div class="row-top-menu clear">
<jdoc:include type="modules" name="user3" style="topmenu" />
</div>
<!--slider-->
<?php if ($showSliderColumn) : ?>
<div class="header-slider clear">
<div class="header-slider-indent">
<div id="featured" >
<jdoc:include type="modules" name="top" />
</div>
</div>
</div>
<?php endif;?>
<!--slider-end-->
<!--content-->
<div id="content">
<div class="clear">
<!--right-->
<?php if ($showrightColumn && !$Edit) : ?>
<div id="right" class="maxheight">
<div class="right-indent">
<jdoc:include type="modules" name="right" style="wrapper_box" />
</div>
</div>
<?php endif;?>
<!--left-->
<?php if ($showleftColumn && !$Edit) : ?>
<div id="left" class="maxheight">
<div class="left-indent">
<jdoc:include type="modules" name="left" style="wrapper_box" />
</div>
</div>
<?php endif;?>
<!--center-->
<div id="container">
<div class="clear">
<?php if ($this->getBuffer('message')) : ?>
<div class="error err-space">
<jdoc:include type="message" />
</div>
<?php endif; ?>
<jdoc:include type="component" />
</div>
</div>
</div>
</div>
</div>
</div>
</td>
</tr>
</table></td>
<td class="tail-content-right"> </td>
</tr>
</table>
<!--footer-->
<div class="tail-footer clear">
<div class="main">
<div class="footer"><?php echo JText::_('Powered by') ?> <a href="#">Joomla![/url]
<!--{%FOOTER_LINK} -->
</div>
</div>
</div>
<script type="text/javascript"> Cufon.now(); </script>
</body>
</html>