ho fatto svariate prove e sono riuscito (usando "jdoc" e non "mosLoadModules") a caricare il modulo. Ma ho dei problemi di visualizzazione.
Riporto l'index.php...
<!-- BEGIN: HEADER -->
<div id="ja-headerwrap" class="clearfix">
<div id="ja-header" style="background: url(templates/<?php echo $JAconfig->template."/images/header/". $JAconfig->ja_color ."/". $ja_header_img;?>) no-repeat top right;">
<div id="ja-newsflash">
<jdoc:include type="modules" name="user5" style="xhtml" />
</div>
<div id="ja-pathwaywrap" class="clearfix">
<?php if($this->countModules('user4')) : ?>
<div id="ja-searchwrap">
<div id="ja-search">
<jdoc:include type="modules" name="user4" style="xhtml" />
</div>
</div>
<?php endif; ?>
<div id="ja-pathway">
<div id="ja-usertoolswrap">
<div id="ja-usertools">
<?php if($JAconfig->ja_tool & 1) $tempTools->genToolMenu(1); ?>
<?php if($JAconfig->ja_tool & 2) $tempTools->genToolMenu(2); ?>
</div>
</div>
<?php if ($this->countModules('breadcrumb')) { ?>
<jdoc:include type="modules" name="breadcrumb" style="xthml" />
<?php } ?>
</div>
</div>
</div>
</div>
<!-- END: HEADER -->
e il css...
/* HEADER
--------------------------------------------------------- */
#ja-headerwrap {
background: #5D6B74;
position: relative;
height: 200px;
line-height: normal;
}
#ja-header {
height: 200px;
}
h1.logo {
font-size: 300%;
display: block;
float: left;
margin: 0;
padding: 0;
width: 218px;
height: 48px;
}
.narrow h1.logo {
width: 172px;
}
h1.logo a {
width: 217px;
height: 48px;
display: block;
float: left;
text-decoration: none;
text-transform: uppercase;
outline: none;
text-indent: -4000px;
background: url(../images/logo.gif) no-repeat;
}
.narrow h1.logo a {
width: 172px;
background: url(../images/logo-narrow.gif) no-repeat;
}
#ja-newsflash {
line-height: normal;
height: 170px;
position: relative;
width: 22.9%;
float: left;
background: #5D6B74 !important;
}
#ja-scroll_1, #ja-scroll_2 {
background: #5D6B74;
}
#ja-pathwaywrap {
background: url(../images/opaque-default.png);
clear: both;
height: 30px;
}
#ja-pathway {
display: block;
padding: 10px 0 5px;
color: #D0D9DF;
width: 77%;
float: right;
text-indent: 20px;
position: relative;
}
#ja-pathway strong {
margin-right: 10px;
}
#ja-pathway img {
margin: 0 5px 0;
}
#ja-pathway a {
font-weight: bold;
color: #D0D9DF;
text-decoration: none;
}
Cancellando questo:
style="background: url(templates/<?php echo $JAconfig->template."/images/header/". $JAconfig->ja_color ."/". $ja_header_img;?>) no-repeat top right;"
mi spariscono effettivamente le immagini dell'header.
Ora mi piacerebbe sapere come posso inserire in maniera pulita il modulo, tenendo conto anche della posizione che dovrà prendere (ossia quella delle vecchie immagini dell'header)
Grazie a tutti e scusate il lungo post.