Approfitto della vostra competenza per altro quesito: nel template malavista lasostituzione del codice a ben vedere non era cosi difficile da fare così come suggerito da Andrea, oggi mi sto cimentando con la stessa cosa ma in un altro template (siteground orangefluff) il cui index.php incollo qui sotto:
<?php
defined( '_VALID_MOS' ) or die( 'Direct Access to this location is not allowed.' );
$iso = split( '=', _ISO );
?>
<!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">
<link rel="stylesheet" href="modules/fisheye_menu/menu.css" type="text/css" />
<script type="text/javascript" src="modules/fisheye_menu/jquery.js"></script>
<script type="text/javascript" src="modules/fisheye_menu/fisheye.js"></script>
<script type="text/javascript" src="modules/fisheye_menu/iutil.js"></script>
<head>
<?php
if ( $my->id ) {
initEditor();
}
if(mosCountModules('left') == 0)
{
$wide = "wide";
}
else
{
$wide = "";
}
?>
<meta http-equiv="Content-Type" content="text/html; <?php echo _ISO; ?>" />
<link rel="alternate" type="application/rss+xml" title="RSS" href="<?php echo $mosConfig_live_site;?>/index.php?option=com_rss&feed=RSS2.0&no_html=1" />
<link href="<?php echo $mosConfig_live_site;?>/templates/<?php echo $mainframe->getTemplate(); ?>/css/template_css.css" rel="stylesheet" type="text/css" />
<link rel="shortcut icon" href="<?php echo $mosConfig_live_site;?>/images/favicon.ico" />
</head>
<body class="body_background">
<div class="wrapper">
<!-- Begin Header -->
<div class="header"></div>
<div class="clr"></div>
<div class="topmenu">
<div class="topmenuitems"><?php mosLoadModules('top',-2); ?></div>
</div>
<!-- End Header --> <!-- Begin Main Area -->
<div class="main">
<table border="0" cellpadding="0" cellspacing="0" class="maintable">
<tr>
<?php if(mosCountModules('left')) { ?>
<td class="leftcol">
<div class="left">
<?php mosLoadModules('left',-2); ?>
<? $sg = 'banner'; include "templates.php"; ?>
</div>
</td>
<?php } ?>
<td class="rightcol<?php echo $wide; ?>">
<div class="right">
<?php if(mosCountModules('user1')) { ?>
<div class="user1">
<?php mosLoadModules('user1',-2); ?>
</div>
<?php } ?>
<?php mosMainBody(); ?>
<?php if(mosCountModules('user2')) { ?>
<div class="user2">
<?php mosLoadModules('user2',-2); ?>
</div>
<?php } ?>
</div>
</td>
</tr>
</table>
</div>
<!-- End Main Area -->
<div id="sgf">
<? $sg = ''; include "templates.php"; ?>
</div>
</div>
</body>
</html>
Ora...le ho quasi provate tutte ma l'header non ha voglia di girare...in alcuni casi proprio non cambia in altri a seconda delle modifiche al codice che provo carica l'immagine in sostituzione dell'header base ma invece di sostituirla la sovrappone ed anche fuori posizione rispetto a quello che dovrebbe essere.... Qualche illuminante suggerimento?
Grazie