Ciao ragazzi, sono nuovo del forum e anche di joomla. Confesso di non avere molta dimestichezza con html e css. Ho provato a cercare l'argomento nel forum, trovando alcune spiegazioni che però non sono riuscito ad applicare. Questo è il mio problema: devo inserire un blocco modulo (chiamiamolo ad esempio miomodulo) sotto le colonne left e right, che occupi lo spazio di entrambe le colonne.
Vi posto qui sotto il filo index.php
io ho provato in tutti i modi ma non ci riesco
<?php defined( "_VALID_MOS" ) or die( "Direct Access to this location is not allowed." );?>
<!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">
<head>
<?php if ( $my->id ) { initEditor(); } ?>
<?php include($GLOBALS['mosConfig_absolute_path']."/templates/emagazine/splitmenu.php"); ?>
<meta http-equiv="Content-Type" content="text/html;><?php echo _ISO; ?>" />
<?php mosShowHead(); ?>
<?php echo "<link rel=\"stylesheet\" href=\"$GLOBALS[mosConfig_live_site]/templates/$GLOBALS[cur_template]/css/template_css.css\" type=\"text/css\"/>" ; ?><?php echo "<link rel=\"shortcut icon\" href=\"$GLOBALS[mosConfig_live_site]/images/favicon.ico\" />" ; ?>
</head>
</head>
<body>
<body class="all">
<div align="center">
<div id="container">
<div id="wrapper">
<div id="header">
<div id="topnav"><?php echo $mycssPSPLITmenu_content; ?></div>
</div>
<div id="content">
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td align="left" valign="top"><div id="maincontent">
<?php mosMainBody(); ?>
</div></td>
<?php if (mosCountModules( "right" )) { ?>
<td width="200" align="left" valign="top"><div id="right">
<?php if (mosCountModules('right')>0) mosLoadModules('right',-2); ?>
</div></td>
<?php } ?>
<?php if (mosCountModules( "left" )) { ?>
<td width="180" align="left" valign="top"><div id="left">
<?php mosLoadModules('left',-2); ?>
</div></td>
<?php } ?>
</tr>
</table>
</div>
<?php if(mosCountModules('user1') || mosCountModules('user2')|| mosCountModules('newsflash') ) { ?>
<div id="bottom">
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<?php if (mosCountModules( "top" )) { ?>
<td align="left" valign="top"><div id="modleft">
<?php if (mosCountModules('top')>0) mosLoadModules('top',-2); ?>
</div></td>
<?php } ?>
<?php if (mosCountModules( "user1" )) { ?>
<td width="250" align="left" valign="top"><div id="modcent">
<?php if (mosCountModules('user1')>0) mosLoadModules('user1',-2); ?>
</div></td>
<?php } ?>
<?php if (mosCountModules( "user2" )) { ?>
<td width="250" align="left" valign="top"><div id="modright">
<?php mosLoadModules('user2',-2); ?>
</div></td>
<?php } ?>
</tr>
</table>
<?php } ?>
</div>
<div id="footer"><p>Powered by
Joomla! |
Joomla templates by
Iboldesign</p>
</div>
</div>
</div>
</div>
</div>
</body>
</html>