Joomla.it Forum

Joomla! 1.0.x (versione con supporto terminato) => Le voci di Joomla.it (solo per versione Joomla 1.0.x) => I Template di Joomla 1.0.x => : filpi5481 01 Jun 2007, 14:30:23

: inserire nel template una nuova posizione blocchi moduli
: filpi5481 01 Jun 2007, 14:30:23
Salve a tutti..
 :)
Ho cercato nel forum ma non ho trovato nulla che andasse bene alla mia richiesta  :(

Volevo sapere una cosa..
volevo aggiungere una nuova posizione blocchi moduli al mio sito web. http://www.filpi17.altervista.org (http://www.filpi17.altervista.org)
Nel pannello di amministrazione ho visto che si può scrivere il nome della posizione.. ma una volta selezionato il modulo e collocato nella nuova posizione non appare...
Come devo fare per farla funzionare correttamente??
Devo inserire qualcosa nel file .css del template??

grazie Filpi5481
: Re: inserire nel template una nuova posizione blocchi moduli
: sara82 01 Jun 2007, 14:32:01
Devi inserire la chiamata alla nuova posizione modulo nella index.php del tuo template
: Re: inserire nel template una nuova posizione blocchi moduli
: filpi5481 01 Jun 2007, 15:23:14
e cosa dovrei scrivere esattamente??  :D sai... con i template non sono molto esperto.. io vorrei una posizione a fondo pagina...

grazie filpi5481
: Re: inserire nel template una nuova posizione blocchi moduli
: sara82 01 Jun 2007, 15:31:00
Nel punto dove vuoi che compaia il tuo modulo aggiungi questa chiamata: <?php mosLoadModules('posizionemodulo'); ?>, dove naturalmente al posto di "poszione modulo" va il nome della nuova posizione..  :)
: Re: inserire nel template una nuova posizione blocchi moduli
: filpi5481 01 Jun 2007, 15:57:08
scusami ancora.. questo è l'index del mio template.. dove devo inserire il codice per avere la posizione a fondo pagina???

grazie filpi5481



<?php
defined( '_VALID_MOS' ) or die( 'Restricted access' );
// needed to seperate the ISO number from the language file constant _ISO
$iso = explode( '=', _ISO );
// xml prolog
echo '<?xml version="1.0" encoding="'. $iso[1] .'"?' .'>';
?>
<!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 mosShowHead(); ?>
<?php
if ( $my->id ) {
   initEditor();
}
?>
<link href="<?php echo $mosConfig_live_site;?>/templates/car2/css/template_css.css" rel="stylesheet" type="text/css" />
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
</head>

<body>
<div align="center">
   <table border="0" cellpadding="0" cellspacing="0" width="900" id="table1">
      <tr>
         <td>
         <table border="0" cellpadding="0" cellspacing="0" width="100%" id="table2">
            <tr>
               <td class="top1"><?php mosLoadModules ( 'user3', -1); ?></td>
               <td class="top2"><?php mosLoadModules ( 'user4', -1); ?></td>
               <td class="top3"><img src="<?php echo $mosConfig_live_site;?>/templates/car2/images/top3.png" /></td>
            </tr>
         </table>
         </td>
      </tr>
      <tr>
         <td><img border="0" src="<?php echo $mosConfig_live_site;?>/templates/car2/images/logo.jpg" /></td>
      </tr>
<?
   if ( mosCountModules ('right') ) {
?>
      <tr>
         <td>
         <table border="0" cellpadding="0" cellspacing="0" width="100%" id="table3" class="main_div">
            <tr>
               <td width="197" valign="top">
               <table border="0" cellpadding="0" cellspacing="0" width="100%" id="table4">
                  <tr>
                     <td class="left" valign="top"><?php mosLoadModules ( 'left', -2 ); ?></td>
                  </tr>
               </table>
               </td>
               <td class="main_body">
               <table border="0" cellpadding="0" cellspacing="0" width="100%" id="table6">
         <?
            if ( mosCountModules ('user1') ) {
         ?>
                  <tr>
                     <td class="newsflash1"><?php mosLoadModules ( 'user1', -1 ); ?></td>
                  </tr>
         <?
            }
         ?>
                  <tr>
                     <td class="center"><?php mosMainBody(); ?></td>
                  </tr>
               </table>
               </td>
               <td width="196" valign="top">
               <table border="0" cellpadding="0" cellspacing="0" width="100%" id="table5">
                  <tr>
                     <td class="right" valign="top"><?php mosLoadModules ( 'right', -3 ); ?></td>
                  </tr>
               </table>
               </td>
            </tr>
         </table>
         </td>
      </tr>
      <tr>
         <td class="footer">design: Admin Filpi (http://www.filpi17.altervista.org)</td>
      </tr>
<?
   }
   else{
?>
      <tr>
         <td>
         <table border="0" cellpadding="0" cellspacing="0" width="100%" id="table3" class="main_div2">
            <tr>
               <td width="197" valign="top">
               <table border="0" cellpadding="0" cellspacing="0" width="100%" id="table4">
                  <tr>
                     <td class="left" valign="top"><?php mosLoadModules ( 'left', -2 ); ?></td>
                  </tr>
               </table>
               </td>
               <td class="main_body2">
               <table border="0" cellpadding="0" cellspacing="0" width="100%" id="table6">
         <?
            if ( mosCountModules ('user1') ) {
         ?>
                  <tr>
                     <td class="newsflash2"><?php mosLoadModules ( 'user1', -1 ); ?></td>
                  </tr>
         <?
            }
         ?>
                  <tr>
                     <td class="center2"><?php mosMainBody(); ?></td>
                  </tr>
               </table>
               </td>
            </tr>
         </table>
         </td>
      </tr>
      <tr>
         <td class="footer2">design: Admin Filpi (http://www.filpi17.altervista.org)</td>
      </tr>
<?
   }
?>
   </table>
</div>
</body>
</html>
: Re: inserire nel template una nuova posizione blocchi moduli
: filpi5481 01 Jun 2007, 20:25:56
sono riuscito ad inserire il codice e a visualizzare correttamente il modulo... però dove devo inserire la chiamata in modo da essere allineato con la tabella centrale??

grazie filpi5481
: Re: inserire nel template una nuova posizione blocchi moduli
: carloernesto 01 Jun 2007, 21:28:56
area downlad manuale "template css"
buon lavoro
: Re: inserire nel template una nuova posizione blocchi moduli
: filpi5481 02 Jun 2007, 15:39:20
mi sono letto tutto il manuale.. ma no sono riuscito a risolvere...  >:(

io vorrei mettre quattro moduli affiancati l'uno con l'altro in fondo alla pagina...

qualcuno saprebbe indicarmi come posso fare o cosa devo mettere all'interno dell'index.php???

grazie filpi5481
: Re: inserire nel template una nuova posizione blocchi moduli
: pixma22 20 Jun 2007, 06:54:17
:
<?php
$topspotlight 
= array ('user1''user2','user3','user4');
$topsl calSpotlight ($topspotlight);
if( 
$topsl ) {
?>

<div id="topslwrap">
<div id="topsl"><div id="innerpad" class="clearfix">

<?php if( mosCountModules('user1') ) {?>
  <div class="box<?php echo $topsl['modules']['user1']; ?>" style="width: <?php echo $topsl['width']; ?>;">
    <div class="innerpad1"><div class="innerpad2">
      <?php mosLoadModules('user1', -2); ?>
      </div></div>
  </div>
  <?php ?>

  <?php if( mosCountModules('user2') ) {?>
  <div class="box<?php echo $topsl['modules']['user2']; ?>" style="width: <?php echo $topsl['width']; ?>;">
   <div class="innerpad1"><div class="innerpad2">
    <?php mosLoadModules('user2', -2); ?>
   </div></div>
  </div>
  <?php ?>

  <?php if( mosCountModules('user3') ) {?>
  <div class="box<?php echo $topsl['modules']['user3']; ?>" style="width: <?php echo $topsl['width']; ?>;">
   <div class="innerpad1"><div class="innerpad2">
    <?php mosLoadModules('user3', -2); ?>
   </div></div>
  </div>
  <?php ?>

  <?php if( mosCountModules('user4') ) {?>
  <div class="box<?php echo $topsl['modules']['user4']; ?>" style="width: <?php echo $topsl['width']; ?>;">
   <div class="innerpad1"><div class="innerpad2">
    <?php mosLoadModules('user4', -2); ?>
   </div></div>
  </div>
  <?php ?>

</div></div>
</div>
<?php ?>
Con questo codice avrai 4 moduli uno affiancato all'altro.Naturalmente pio devi crearti il CSS.Buon divertimento
: Re: inserire nel template una nuova posizione blocchi moduli
: filpi5481 20 Jun 2007, 10:36:44
grazie della tua rispista..

sai come ho risolto?? Ho comprato un template con 16 posizioni moduli..  ;D  direi che ne ho abbastanza  ;)

grazie lo stesso..

ciao
: Re: inserire nel template una nuova posizione blocchi moduli
: raben 20 Jun 2007, 10:59:16
grazie della tua rispista..

sai come ho risolto?? Ho comprato un template con 16 posizioni moduli..  ;D  direi che ne ho abbastanza  ;)

grazie lo stesso..

imparare un po' di css e di html non fa mai male... qualcuno un tempo disse: impara l'arte e mettila da parte..

ma indubbiamente comprare un template è sempre più veloce.. anche se rende il lavoro meno originale.
ovviamente  IMVHO
: Re: inserire nel template una nuova posizione blocchi moduli
: taolo 20 Jun 2007, 16:49:48
grazie della tua rispista..

sai come ho risolto?? Ho comprato un template con 16 posizioni moduli..  ;D  direi che ne ho abbastanza  ;)

grazie lo stesso..

ciao
può sempre succedere che dove ti serve la posizione non c'è!!!  ;D
: Re: inserire nel template una nuova posizione blocchi moduli
: filpi5481 21 Jun 2007, 09:08:22
grazie della tua rispista..

sai come ho risolto?? Ho comprato un template con 16 posizioni moduli..  ;D  direi che ne ho abbastanza  ;)

grazie lo stesso..

imparare un po' di css e di html non fa mai male... qualcuno un tempo disse: impara l'arte e mettila da parte..

ma indubbiamente comprare un template è sempre più veloce.. anche se rende il lavoro meno originale.
ovviamente  IMVHO

questo è vero.. :-[.. però un pò di css lo so fare anche io (cambiare lo sfondo.. i caratteri..) ma creare un template nuovo o solo dei blocchi moduli vado un pò in difficoltà...

grazie della tua rispista..

sai come ho risolto?? Ho comprato un template con 16 posizioni moduli..  ;D  direi che ne ho abbastanza  ;)

grazie lo stesso..

ciao
può sempre succedere che dove ti serve la posizione non c'è!!!  ;D

questo è vero.. speriamo di no però..  ;D  ;)
: Re: inserire nel template una nuova posizione blocchi moduli
: zibudj 12 Feb 2008, 18:35:20
ok io ho il suo stesso identico problema..volevo mettere 4 moduli in fondo al sito..di html e css qualcosina so ma di php non so niente.
:
<?php
defined
'_VALID_MOS' ) or die( 'Direct Access to this location is not allowed.' );
// needed to seperate the ISO number from the language file constant _ISO
$iso split'='_ISO );
// xml prolog
echo '<?xml version="1.0" encoding="'$iso[1] .'"?' .'>';
?>

<!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 mosShowHead(); ?>
<?php
if ( $my->id ) {
initEditor();
}
?>

<meta http-equiv="Content-Type" content="text/html; <?php echo _ISO?>" />
<link href="<?php echo $mosConfig_live_site;?>/templates/mont_darkpipes/css/template_css.css" rel="stylesheet" type="text/css">
<link href="<?php echo $mosConfig_live_site;?>/templates/mont_darkpipes/css/borders.css" rel="stylesheet" type="text/css">
<link href="<?php echo $mosConfig_live_site;?>/templates/mont_darkpipes/css/grafics.css" rel="stylesheet" type="text/css">
</head>
<body>

<!-- ************************************************************************************************************
     Template COPYRIGHT by Mont-Bit International
http://www.mont-bit.com
what you want edit here? this is a grafic template. you must edit grafic pictures, but this is very
difficult. accept this template with this grafics or take another template. sorry
-->
<div id="main_border">
  <table width="100%"  border="0" cellspacing="0" cellpadding="0">
    <tr>
      <td class="mb01_01">&nbsp;</td>
      <td class="mb01_02">&nbsp;</td>
      <td class="mb01_03">&nbsp;</td>
    </tr>
    <tr>
      <td class="mb02_01">&nbsp;</td>
 
<!-- here begin my impossible construct for the header grafic, hahaha ************************************** -->  
      <td valign="top" bgcolor="#555555"><table width="100%"  border="0" cellspacing="0" cellpadding="0">
        <tr>
          <td width="665"><table width="665" border="0" align="left" cellpadding="0" cellspacing="0" background="<?php echo $mosConfig_live_site;?>/templates/mont_darkpipes/images/header_short.png">
            <tr>
              <td class="hd01-01"></td>
              <td colspan="4" class="hd01_02"></td>
              <td class="hd01_03"></td>
            </tr>
            <tr>
              <td rowspan="3" class="hd02_01"></td>
              <td colspan="4" rowspan="3"></td>
              <td class="hd02_05"></td>
            </tr>
            <tr>
              <td class="hd03_05"></td>
            </tr>
            <tr>
              <td class="hd04_05"></td>
            </tr>
            <tr>
              <td class="hd05_01"></td>
              <td class="hd05_02"></td>
              <td class="hd05_03"></td>
              <td class="hd05_04"></td>
              <td class="hd05_05"></td>
              <td class="hd05_06"></td>
            </tr>
          </table></td>
          <td align="right" valign="top">
<!-- here ending my impossible construct for the header grafic, hahaha ************************************** -->  

<!-- begin right side from the header grafic, top module active or inactive = change 2 table, again impossible code, smile -->
<!-- with top window ********************************************************************************************************* -->  
       <?php                     
         
if ( mosCountModules'top' ) == 1)   // pruefen auf top
 {  
  ?>

  <table width="100%"  border="0" cellpadding="0" cellspacing="0" bgcolor="#2A2A2A">
            <tr>
              <td width="10" height="15" bgcolor="#555555"></td>
              <td width="15" background="<?php echo $mosConfig_live_site;?>/templates/mont_darkpipes/images/10-01.gif" bgcolor="#2A2A2A">&nbsp;</td>
              <td background="<?php echo $mosConfig_live_site;?>/templates/mont_darkpipes/images/10-02.gif" bgcolor="#2A2A2A">&nbsp;</td>
              <td width="26"><div id="hd01_03"></div></td>
            </tr>
            <tr>
              <td height="18" bgcolor="#555555">&nbsp;</td>
              <td background="<?php echo $mosConfig_live_site;?>/templates/mont_darkpipes/images/11-01.gif">&nbsp;</td>
              <td rowspan="3" align="left" valign="top"><div id="top_output"><?php mosLoadModules 'top', -); ?></div></td>
              <td valign="top" background="<?php echo $mosConfig_live_site;?>/templates/mont_darkpipes/images/13-05.gif"><img src="<?php echo $mosConfig_live_site;?>/templates/mont_darkpipes/images/11-05.gif" width="26" height="19"></td>
            </tr>
            <tr>
              <td height="42" background="<?php echo $mosConfig_live_site;?>/templates/mont_darkpipes/images/20-01.gif" bgcolor="#555555">&nbsp;</td>
              <td background="<?php echo $mosConfig_live_site;?>/templates/mont_darkpipes/images/11-01.gif">&nbsp;</td>
              <td background="<?php echo $mosConfig_live_site;?>/templates/mont_darkpipes/images/13-05.gif">&nbsp;</td>
            </tr>
            <tr>
              <td height="79" bgcolor="#555555">&nbsp;</td>
              <td background="<?php echo $mosConfig_live_site;?>/templates/mont_darkpipes/images/11-01.gif">&nbsp;</td>
              <td background="<?php echo $mosConfig_live_site;?>/templates/mont_darkpipes/images/13-05.gif">&nbsp;</td>
            </tr>
            <tr>
              <td bgcolor="#555555">&nbsp;</td>
              <td height="25" background="<?php echo $mosConfig_live_site;?>/templates/mont_darkpipes/images/15-01.gif">&nbsp;</td>
              <td nowrap="nowrap" background="<?php echo $mosConfig_live_site;?>/templates/mont_darkpipes/images/15-03.gif"><div id="hd02_02"></div><div id="pipe_bottom01"></div></td>
              <td background="<?php echo $mosConfig_live_site;?>/templates/mont_darkpipes/images/15-05.gif">&nbsp;</td>
            </tr>
          </table>
<!-- end with top window ********************************************************************************************************* -->    
 
<!-- begin no top window ********************************************************************************************************* -->  
   <?php
   }
else
   {
            
?>


  <table width="100%"  border="0" cellspacing="0" cellpadding="0">
            <tr>
              <td class="top_rs01_01"></td>
              <td class="top_rs01_01"><img src="<?php echo $mosConfig_live_site;?>/templates/mont_darkpipes/images/space.gif" width="30" height="10"></td>
              <td><img src="<?php echo $mosConfig_live_site;?>/templates/mont_darkpipes/images/space.gif" width="35" height="10"></td>
            </tr>
            <tr>
              <td class="top_rs02_01">&nbsp;</td>
              <td class="top_rs02_02">&nbsp;</td>
              <td>&nbsp;</td>
            </tr>
            <tr>
              <td>&nbsp;</td>
              <td class="top_rs03-02">&nbsp;</td>
              <td>&nbsp;</td>
            </tr>
          </table> 
  <?php
   }
   ?>

  </td>
        </tr>
<!-- end no top window ********************************************************************************************************* -->  
<!-- end right side from the header grafic, top module active or inactive = change 2 table, you in shok, you see this code? smile -->

<!-- begin user 3 and user 4 **************************************************************** -->
<!-- you deactivate top-menu, this construct joomla don't show you. but you loose user 4 (search) -->
      <?php                     
         
if ( mosCountModules'user3' ) == 1//you have deactivate top-menu, this table stay hidden, you don't see
 {  
  ?>

  </table>
        <table width="100%"  border="0" cellspacing="0" cellpadding="0">
        <tr>
          <td width="243" background="<?php echo $mosConfig_live_site;?>/templates/mont_darkpipes/images/left.gif"></td>
          <td></td>
          <td><div id="pipe_down"></div></td>
          <td width="26"></td>
        </tr>
      </table>
        <table width="100%"  border="0" cellspacing="0" cellpadding="0">
          <tr>
            <td width="15" bgcolor="#2A2A2A"><div id="hd01_01"></div>
            <!-- corner-top-left --></td>
            <td colspan="2" background="<?php echo $mosConfig_live_site;?>/templates/mont_darkpipes/images/10-02.gif" bgcolor="#2A2A2A">&nbsp;</td>
            <td width="26"><div id="hd01_03"> </div></td>
          </tr>
          <tr>
            <td background="<?php echo $mosConfig_live_site;?>/templates/mont_darkpipes/images/11-01.gif" bgcolor="#2A2A2A">&nbsp;</td>
            <td bgcolor="#2A2A2A"><?php mosLoadModules 'user3', -1); ?></td>
            <td width="150" bgcolor="#2A2A2A"><?php mosLoadModules 'user4', -1); ?></td>
            <td valign="top" background="<?php echo $mosConfig_live_site;?>/templates/mont_darkpipes/images/13-05.gif" bgcolor="#2A2A2A"><img src="<?php echo $mosConfig_live_site;?>/templates/mont_darkpipes/images/11-05.gif" width="26" height="19"></td>
          </tr>
        </table>
        <table width="100%"  border="0" cellspacing="0" cellpadding="0">
          <tr>
            <td width="15" height="25" background="<?php echo $mosConfig_live_site;?>/templates/mont_darkpipes/images/15-01.gif" bgcolor="#2A2A2A">&nbsp;</td>
            <td width="59" background="<?php echo $mosConfig_live_site;?>/templates/mont_darkpipes/images/15-03.gif" bgcolor="#2A2A2A"><div id="hd02_02"></div></td>
            <td width="25" background="<?php echo $mosConfig_live_site;?>/templates/mont_darkpipes/images/15-04.gif" bgcolor="#2A2A2A">&nbsp;</td>
            <td background="<?php echo $mosConfig_live_site;?>/templates/mont_darkpipes/images/15-03.gif" bgcolor="#2A2A2A">&nbsp;</td>
            <td width="25" background="<?php echo $mosConfig_live_site;?>/templates/mont_darkpipes/images/15-03.gif" bgcolor="#2A2A2A"><div id="pipe_bottom01"></div></td>
            <td width="26" background="<?php echo $mosConfig_live_site;?>/templates/mont_darkpipes/images/15-05.gif" bgcolor="#2A2A2A">&nbsp;</td>
          </tr>
        </table>
<?php
   }
   ?>

<!-- end user 3 and user 4 **************************************************************** -->

      <table width="100%" border="0" cellspacing="0" cellpadding="0">
          <tr>
           
<!-- menu left **************************************************************** -->
<!--             <td width="201" valign="top" background="<?php echo $mosConfig_live_site;?>/templates/mont_darkpipes/images/left.gif" bgcolor="#555555">   -->
            <td width="201" valign="top" background="<?php echo $mosConfig_live_site;?>/templates/mont_darkpipes/images/left.gif" bgcolor="#555555">
  <div id="top_left_box">
                <div id="distance90"></div>
<!--                <div id="one_line_01"></div>     -->
              </div>
                <div class="clr"></div>
               
                  <table width="201" border="0" cellpadding="0" cellspacing="0">
                    <tr>
  <td><div id="hd01_01"></div></td>
  <td background="<?php echo $mosConfig_live_site;?>/templates/mont_darkpipes/images/10-02.gif" bgcolor="#2A2A2A">&nbsp;</td>
  <td><div id="hd01_03"></div></td>
</tr>
<tr>
  <td background="<?php echo $mosConfig_live_site;?>/templates/mont_darkpipes/images/11-01.gif" bgcolor="#2A2A2A"></td>
                      <td width="160" valign="top" bgcolor="#2a2a2a"><?php mosLoadModules 'left', -); ?></td>
                      <td width="26" align="right" valign="top" background="<?php echo $mosConfig_live_site;?>/templates/mont_darkpipes/images/13-05.gif" bgcolor="#2A2A2A"><img src="<?php echo $mosConfig_live_site;?>/templates/mont_darkpipes/images/11-05.gif" width="26" height="19"></td>
                    </tr>
              </table>
                <div class="clr"></div>
                <div id="left_box">
                  <div id="hd02_01"></div>
                  <div id="hd02_02"></div>
                  <div id="hd02_03"></div>
                  <div id="hd02_04"></div>
                  <div id="hd02_05"></div>
                  <div id="hd02_06"></div>
                </div>
                <div class="clr"></div>
                <div id="distance90"></div>
                <div id="one_line_01"></div>
            </td>
<!-- menu left end **************************************************************** -->

            <td width="7"><div id="distance10"></div></td>
            <!-- important little distance from 10 pixels -->
            <td align="right" valign="top" class="right-backgroung">
<!-- banner module **************************************************************** -->
      <?php
         
if ( mosCountModules'banner' ) >= 1 // you have deactivate the banner module, this table goes hidden in joomla
            
?>




<div id="distance61"></div>
                <!-- important distance from right border for the pipeline -->
                <div id="pipe_right"></div>
                <div class="clr"></div>


                <table width="679"  border="0" cellspacing="0" cellpadding="0">
                  <tr>
                    <td width="15" height="15"><div id="hd01_01"></div></td>
                    <td height="15" background="<?php echo $mosConfig_live_site;?>/templates/mont_darkpipes/images/10-02.gif" bgcolor="#2A2A2A">&nbsp;</td>
                    <td width="26" height="15"><div id="hd01_03"></div></td>
                  </tr>
                  <tr>
                    <td width="15" background="<?php echo $mosConfig_live_site;?>/templates/mont_darkpipes/images/11-01.gif" bgcolor="#2A2A2A">&nbsp;</td>
                    <td><table width="100%"  border="0" cellpadding="0" cellspacing="0" bgcolor="#2A2A2A">
                        <tr>
                          <td align="center" valign="middle"><?php mosLoadModules'banner', -); ?></td>
                          <td width="5">&nbsp;</td>
                          <td width="165" height="68"><img src="<?php echo $mosConfig_live_site;?>/templates/mont_darkpipes/images/powered_by.png" width="165" height="68"></td>
                        </tr>
                    </table></td>
                    <td width="26" valign="top" background="<?php echo $mosConfig_live_site;?>/templates/mont_darkpipes/images/13-05.gif" bgcolor="#2A2A2A"><img src="<?php echo $mosConfig_live_site;?>/templates/mont_darkpipes/images/11-05.gif" width="26" height="19"></td>
                  </tr>
                  <tr>
                    <td width="15" height="25" background="<?php echo $mosConfig_live_site;?>/templates/mont_darkpipes/images/15-01.gif" bgcolor="#2A2A2A">&nbsp;</td>
                    <td background="<?php echo $mosConfig_live_site;?>/templates/mont_darkpipes/images/15-03.gif" bgcolor="#2A2A2A"><div id="hd02_02"></div>
                        <div id="pipe_bottom01"></div></td>
                    <td background="<?php echo $mosConfig_live_site;?>/templates/mont_darkpipes/images/15-05.gif" bgcolor="#2A2A2A">&nbsp;</td>
                  </tr>
              </table>
            <?php
            
}
             
?>

<!-- end banner module ********************************************************************************* -->

<!-- begin menu right and main_body ******************************************************************** -->
   <?php
      
if ( mosCountModules'right' )  >= 1// menu right activ, show this part from table
         
{
         
?>

                <table width="100%"  border="0" cellspacing="0" cellpadding="0">
                  <tr>
                    <td width="100%" align="left" valign="top">
<table width="100%"  border="0" cellspacing="0" cellpadding="0">
                        <tr>
                          <td width="15" height="10"></td>
                          <td></td>
                          <td width="26"></td>
                          <td width="10"></td>
                        </tr>
                        <tr>
                          <td bgcolor="#2A2A2A"><div id="hd01_01"></div>
                              <!-- corner-top-left --></td>
                          <td background="<?php echo $mosConfig_live_site;?>/templates/mont_darkpipes/images/10-02.gif" bgcolor="#2A2A2A"></td>
                          <td><div id="hd01_03"></div>
                              <!-- corner-top-right --></td>
                          <td>&nbsp;</td>
                        </tr>
                        <tr>
                          <td background="<?php echo $mosConfig_live_site;?>/templates/mont_darkpipes/images/11-01.gif" bgcolor="#2A2A2A">&nbsp;</td>
                          <td align="left" valign="top" bgcolor="#2A2A2A">
 
 
                          <!-- output in this window / user 1, user2, pathway and main body / simply ****************** -->
  <table width="100%"  border="0" cellspacing="0" cellpadding="0">
 
  <!-- user 1 / 2 active? then show this line -->
  <?php
         $user 0;
     if ( mosCountModules'user1' ) == 1)
     {
 $user 1;
 }
 if ( mosCountModules'user2' ) == 1)
     {
 $user 1;
 }
 if ( $user == )
     {
 ?>
<tr><td>
<table width="100%" cellpadding="0" cellspacing="0" border="0">
   <tr>
      <?php if ( mosCountModules'user1' ) == 1)     // ask joomla from user 1
                                              
{
              ?>

                                              <td width="50%" valign="top"><?php mosLoadModules 'user1', -2); ?></td>
                                              <?php
              }
                                            if ( 
mosCountModules'user2' ) == 1)     // ask joomla from user 2
                                              
{
              ?>

                                              <td width="50%" valign="top"><?php mosLoadModules 'user2', -2); ?></td>
                                              <?php
              }
              ?>

       </tr>
</table></td></tr>
                                 <?php
             }
 ?>

                            <tr>
                              <td class="home"><?php mosPathWay(); ?></td>
                            </tr>
<tr>
  <td><img src="<?php echo $mosConfig_live_site;?>/templates/mont_darkpipes/images/spacer.gif" height="3" width="1"></td>
</tr>
                            <tr>
                              <td><?php mosMainBody(); ?></td>
                            </tr>
                          </table>
                          </td>
                          <td valign="top" background="<?php echo $mosConfig_live_site;?>/templates/mont_darkpipes/images/13-05.gif" bgcolor="#2A2A2A"><img src="<?php echo $mosConfig_live_site;?>/templates/mont_darkpipes/images/11-05.gif" width="26" height="19"></td>
                          <td>&nbsp;</td>
                        </tr>
                        <tr>
                          <td height="25" background="<?php echo $mosConfig_live_site;?>/templates/mont_darkpipes/images/15-01.gif" bgcolor="#2A2A2A">&nbsp;</td>
                          <td background="<?php echo $mosConfig_live_site;?>/templates/mont_darkpipes/images/15-03.gif" bgcolor="#2A2A2A"><div id="hd02_02"></div></td>
                          <td background="<?php echo $mosConfig_live_site;?>/templates/mont_darkpipes/images/15-05.gif" bgcolor="#2A2A2A">&nbsp;</td>
                          <td>&nbsp;</td>
                        </tr>
                    </table></td>

<!--                <td align="right" valign="top" background="<?php echo $mosConfig_live_site;?>/templates/mont_darkpipes/images/right-bg.gif"><table width="201"  border="0" cellspacing="0" cellpadding="0">  -->
                    <td align="right" valign="top" background="<?php echo $mosConfig_live_site;?>/templates/mont_darkpipes/images/right-bg.gif"><table width="201"  border="0" cellspacing="0" cellpadding="0">

<!-- end main body - begin menu right **************************************************** -->
                        <tr>
                          <td width="15"></td>
                          <td width="160"><div id="pipe_down"></div></td>
                          <td width="26"></td>
                        </tr>
                        <tr>
                          <td background="<?php echo $mosConfig_live_site;?>/templates/mont_darkpipes/images/10-02.gif" bgcolor="#2A2A2A"><div id="hd01_01"></div>
                              <!-- corner-top-left --></td>
                          <td background="<?php echo $mosConfig_live_site;?>/templates/mont_darkpipes/images/10-02.gif" bgcolor="#2a2a2a"></td>
                          <td><div id="hd01_03"></div>
                              <!-- corner-top-right --></td>
                        </tr>
                        <tr>
                          <td background="<?php echo $mosConfig_live_site;?>/templates/mont_darkpipes/images/11-01.gif" bgcolor="#2A2A2A">&nbsp;</td>
                          <td align="left" valign="top" bgcolor="#2A2A2A"><?php mosLoadModules 'right', -); ?></td>
                          <td valign="top" background="<?php echo $mosConfig_live_site;?>/templates/mont_darkpipes/images/13-05.gif" bgcolor="#2A2A2A"><img src="<?php echo $mosConfig_live_site;?>/templates/mont_darkpipes/images/11-05.gif" width="26" height="19"></td>
                        </tr>
                        <tr>
                          <td background="<?php echo $mosConfig_live_site;?>/templates/mont_darkpipes/images/15-01.gif" bgcolor="#2A2A2A">&nbsp;</td>
                          <td background="<?php echo $mosConfig_live_site;?>/templates/mont_darkpipes/images/15-03.gif" bgcolor="#2A2A2A"><div id="hd02_02"></div>
                              <div id="pipe_bottom01"></div></td>
                          <td background="<?php echo $mosConfig_live_site;?>/templates/mont_darkpipes/images/15-05.gif" bgcolor="#2A2A2A">&nbsp;</td>
                        </tr>
                    </table></td>
                  </tr>
                </table>
<!-- end menu right and main_body ******************************************************************** -->

<!-- begin only main_body, without menu right ******************************************************** -->
          <?php
            
}
   else
     {
 ?>

                <table width="100%"  border="0" cellspacing="0" cellpadding="0">
                  <tr>
                    <td width="15"></td>
                    <td><div id="pipe_down"></div></td>
                    <td width="26"></td>
                  </tr>
                  <tr>
                    <td background="<?php echo $mosConfig_live_site;?>/templates/mont_darkpipes/images/10-02.gif" bgcolor="#2A2A2A"><div id="hd01_01"></div>
                        <!-- corner-top-left --></td>
                    <td background="<?php echo $mosConfig_live_site;?>/templates/mont_darkpipes/images/10-02.gif" bgcolor="#2a2a2a"></td>
                    <td><div id="hd01_03"></div>
                        <!-- corner-top-right --></td>
                  </tr>
                  <tr>
                    <td background="<?php echo $mosConfig_live_site;?>/templates/mont_darkpipes/images/11-01.gif" bgcolor="#2A2A2A">&nbsp;</td>
                    <td align="left" valign="top" bgcolor="#2A2A2A">



<table width="100%"  border="0" cellspacing="0" cellpadding="0">
 
  <!-- user 1 / 2 active? then show this line -->
  <?php
         $user 0;
     if ( mosCountModules'user1' ) == 1)
     {
 $user 1;
 }
 if ( mosCountModules'user2' ) == 1)
     {
 $user 1;
 }
 if ( $user == )
     {
 ?>
<tr><td>
<table width="100%" cellpadding="0" cellspacing="0" border="0">
   <tr>
      <?php if ( mosCountModules'user1' ) == 1)     // ask joomla from user 1
                                              
{
              ?>

                                              <td width="50%" valign="top"><?php mosLoadModules 'user1', -2); ?></td>
                                              <?php
              }
                                            if ( 
mosCountModules'user2' ) == 1)     // ask joomla from user 2
                                              
{
              ?>

                                              <td width="50%" valign="top"><?php mosLoadModules 'user2', -2); ?></td>
                                              <?php
              }
              ?>

       </tr>
</table></td></tr>
                                 <?php
             }
 ?>

                            <tr>
                              <td class="home"><?php mosPathWay(); ?></td>
                            </tr>
<tr>
  <td><img src="<?php echo $mosConfig_live_site;?>/templates/mont_darkpipes/images/spacer.gif" height="3" width="1"></td>
</tr>
                            <tr>
                              <td><?php mosMainBody(); ?></td>
                            </tr>
                      </table>                   


</td>
    <td valign="top" background="<?php echo $mosConfig_live_site;?>/templates/mont_darkpipes/images/13-05.gif" bgcolor="#2A2A2A"><img src="<?php echo $mosConfig_live_site;?>/templates/mont_darkpipes/images/11-05.gif" width="26" height="19"></td>
                  </tr>
                  <tr>
                    <td background="<?php echo $mosConfig_live_site;?>/templates/mont_darkpipes/images/15-01.gif" bgcolor="#2A2A2A">&nbsp;</td>
                    <td background="<?php echo $mosConfig_live_site;?>/templates/mont_darkpipes/images/15-03.gif" bgcolor="#2A2A2A"><div id="hd02_02"></div>
                        <div id="pipe_bottom01"></div></td>
                    <td background="<?php echo $mosConfig_live_site;?>/templates/mont_darkpipes/images/15-05.gif" bgcolor="#2A2A2A">&nbsp;</td>
                  </tr>
                </table>
          <?php
            
}
             
?>

<!-- end only main_body, without menu right ************************************************************* -->

            </td>
          </tr>
        </table>
<table width="100%"  border="0" cellspacing="0" cellpadding="0">
          <tr>
            <td width="74">&nbsp;</td>
            <td width="25" height="28" background="<?php echo $mosConfig_live_site;?>/templates/mont_darkpipes/images/50-00.gif">&nbsp;</td>
            <td background="<?php echo $mosConfig_live_site;?>/templates/mont_darkpipes/images/50-01.gif">&nbsp;</td>
            <td width="28" background="<?php echo $mosConfig_live_site;?>/templates/mont_darkpipes/images/50-02.gif">&nbsp;</td>
            <td width="37">&nbsp;</td>
          </tr>
        </table>
  </td>
      <td class="mb02_03">&nbsp;</td>
    </tr>
    <tr>
      <td class="mb03_01">&nbsp;</td>
      <td class="mb03_02">&nbsp;</td>
      <td class="mb03_03">&nbsp;</td>
    </tr>
<tr align="center">
  <td colspan="3">
     <!-- This Template is COPYRIGHT!!! You don't authority to delete next line. you can stay your name before -->
     <!-- here your name -->&copy; by <a href="http://www.mont-bit.com" target="_blank">Mont-Bit International</a><br>
     &nbsp;
  </td>
</tr>
  </table>
</div>

</body>
</html>
questo è l'html del mio template..cosa e dove devo inserire esattamente per avere i 4 moduli in fondo al sito??help


sono riuscito a inseriro il codice che è stato consigliato di inserire ma anziche metterli tutti in fondo li mette tutti a destra...cosa devo modificare?
: Re: inserire nel template una nuova posizione blocchi moduli
: pixma22 17 Feb 2008, 15:07:39
se inserisci il codice senza abbinarlo ad un css,naturalmente la posizione dei nuovi moduli non e- corretta.E poi bisogna vedere dove hai inserito il codice,in che posizione del template.
Prova a postare il index php e template css e magari dirmi quale template usi che provo a vedere.
: Re: inserire nel template una nuova posizione blocchi moduli
: zibudj 19 Feb 2008, 19:26:50
questo è l'html:
:
<?php
defined
'_VALID_MOS' ) or die( 'Direct Access to this location is not allowed.' );
// needed to seperate the ISO number from the language file constant _ISO
$iso split'='_ISO );
// xml prolog
echo '<?xml version="1.0" encoding="'$iso[1] .'"?' .'>';
?>

<!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 mosShowHead(); ?>
<?php
if ( $my->id ) {
initEditor();
}
?>

<meta http-equiv="Content-Type" content="text/html; <?php echo _ISO?>" />
<link href="<?php echo $mosConfig_live_site;?>/templates/mont_darkpipes/css/template_css.css" rel="stylesheet" type="text/css">
<link href="<?php echo $mosConfig_live_site;?>/templates/mont_darkpipes/css/borders.css" rel="stylesheet" type="text/css">
<link href="<?php echo $mosConfig_live_site;?>/templates/mont_darkpipes/css/grafics.css" rel="stylesheet" type="text/css">
</head>
<body>

<!-- ************************************************************************************************************
     Template COPYRIGHT by Mont-Bit International
http://www.mont-bit.com
what you want edit here? this is a grafic template. you must edit grafic pictures, but this is very
difficult. accept this template with this grafics or take another template. sorry
-->
<div id="main_border">
  <table width="100%"  border="0" cellspacing="0" cellpadding="0">
    <tr>
      <td class="mb01_01">&nbsp;</td>
      <td class="mb01_02">&nbsp;</td>
      <td class="mb01_03">&nbsp;</td>
    </tr>
    <tr>
      <td class="mb02_01">&nbsp;</td>
 
<!-- here begin my impossible construct for the header grafic, hahaha ************************************** -->  
      <td valign="top" bgcolor="#555555"><table width="100%"  border="0" cellspacing="0" cellpadding="0">
        <tr>
          <td width="665"><table width="665" border="0" align="left" cellpadding="0" cellspacing="0" background="<?php echo $mosConfig_live_site;?>/templates/mont_darkpipes/images/header_short.png">
            <tr>
              <td class="hd01-01"></td>
              <td colspan="4" class="hd01_02"></td>
              <td class="hd01_03"></td>
            </tr>
            <tr>
              <td rowspan="3" class="hd02_01"></td>
              <td colspan="4" rowspan="3"></td>
              <td class="hd02_05"></td>
            </tr>
            <tr>
              <td class="hd03_05"></td>
            </tr>
            <tr>
              <td class="hd04_05"></td>
            </tr>
            <tr>
              <td class="hd05_01"></td>
              <td class="hd05_02"></td>
              <td class="hd05_03"></td>
              <td class="hd05_04"></td>
              <td class="hd05_05"></td>
              <td class="hd05_06"></td>
            </tr>
          </table></td>
          <td align="right" valign="top">
<!-- here ending my impossible construct for the header grafic, hahaha ************************************** -->  

<!-- begin right side from the header grafic, top module active or inactive = change 2 table, again impossible code, smile -->
<!-- with top window ********************************************************************************************************* -->  
       <?php                     
         
if ( mosCountModules'top' ) == 1)   // pruefen auf top
 {  
  ?>

  <table width="100%"  border="0" cellpadding="0" cellspacing="0" bgcolor="#2A2A2A">
            <tr>
              <td width="10" height="15" bgcolor="#555555"></td>
              <td width="15" background="<?php echo $mosConfig_live_site;?>/templates/mont_darkpipes/images/10-01.gif" bgcolor="#2A2A2A">&nbsp;</td>
              <td background="<?php echo $mosConfig_live_site;?>/templates/mont_darkpipes/images/10-02.gif" bgcolor="#2A2A2A">&nbsp;</td>
              <td width="26"><div id="hd01_03"></div></td>
            </tr>
            <tr>
              <td height="18" bgcolor="#555555">&nbsp;</td>
              <td background="<?php echo $mosConfig_live_site;?>/templates/mont_darkpipes/images/11-01.gif">&nbsp;</td>
              <td rowspan="3" align="left" valign="top"><div id="top_output"><?php mosLoadModules 'top', -); ?></div></td>
              <td valign="top" background="<?php echo $mosConfig_live_site;?>/templates/mont_darkpipes/images/13-05.gif"><img src="<?php echo $mosConfig_live_site;?>/templates/mont_darkpipes/images/11-05.gif" width="26" height="19"></td>
            </tr>
            <tr>
              <td height="42" background="<?php echo $mosConfig_live_site;?>/templates/mont_darkpipes/images/20-01.gif" bgcolor="#555555">&nbsp;</td>
              <td background="<?php echo $mosConfig_live_site;?>/templates/mont_darkpipes/images/11-01.gif">&nbsp;</td>
              <td background="<?php echo $mosConfig_live_site;?>/templates/mont_darkpipes/images/13-05.gif">&nbsp;</td>
            </tr>
            <tr>
              <td height="79" bgcolor="#555555">&nbsp;</td>
              <td background="<?php echo $mosConfig_live_site;?>/templates/mont_darkpipes/images/11-01.gif">&nbsp;</td>
              <td background="<?php echo $mosConfig_live_site;?>/templates/mont_darkpipes/images/13-05.gif">&nbsp;</td>
            </tr>
            <tr>
              <td bgcolor="#555555">&nbsp;</td>
              <td height="25" background="<?php echo $mosConfig_live_site;?>/templates/mont_darkpipes/images/15-01.gif">&nbsp;</td>
              <td nowrap="nowrap" background="<?php echo $mosConfig_live_site;?>/templates/mont_darkpipes/images/15-03.gif"><div id="hd02_02"></div><div id="pipe_bottom01"></div></td>
              <td background="<?php echo $mosConfig_live_site;?>/templates/mont_darkpipes/images/15-05.gif">&nbsp;</td>
            </tr>
          </table>
<!-- end with top window ********************************************************************************************************* -->    
 
<!-- begin no top window ********************************************************************************************************* -->  
   <?php
   }
else
   {
            
?>


  <table width="100%"  border="0" cellspacing="0" cellpadding="0">
            <tr>
              <td class="top_rs01_01"></td>
              <td class="top_rs01_01"><img src="<?php echo $mosConfig_live_site;?>/templates/mont_darkpipes/images/space.gif" width="30" height="10"></td>
              <td><img src="<?php echo $mosConfig_live_site;?>/templates/mont_darkpipes/images/space.gif" width="35" height="10"></td>
            </tr>
            <tr>
              <td class="top_rs02_01">&nbsp;</td>
              <td class="top_rs02_02">&nbsp;</td>
              <td>&nbsp;</td>
            </tr>
            <tr>
              <td>&nbsp;</td>
              <td class="top_rs03-02">&nbsp;</td>
              <td>&nbsp;</td>
            </tr>
          </table> 
  <?php
   }
   ?>

  </td>
        </tr>
<!-- end no top window ********************************************************************************************************* -->  
<!-- end right side from the header grafic, top module active or inactive = change 2 table, you in shok, you see this code? smile -->

<!-- begin user 3 and user 4 **************************************************************** -->
<!-- you deactivate top-menu, this construct joomla don't show you. but you loose user 4 (search) -->
      <?php                     
         
if ( mosCountModules'user3' ) == 1//you have deactivate top-menu, this table stay hidden, you don't see
 {  
  ?>

  </table>
        <table width="100%"  border="0" cellspacing="0" cellpadding="0">
        <tr>
          <td width="243" background="<?php echo $mosConfig_live_site;?>/templates/mont_darkpipes/images/left.gif"></td>
          <td></td>
          <td><div id="pipe_down"></div></td>
          <td width="26"></td>
        </tr>
      </table>
        <table width="100%"  border="0" cellspacing="0" cellpadding="0">
          <tr>
            <td width="15" bgcolor="#2A2A2A"><div id="hd01_01"></div>
            <!-- corner-top-left --></td>
            <td colspan="2" background="<?php echo $mosConfig_live_site;?>/templates/mont_darkpipes/images/10-02.gif" bgcolor="#2A2A2A">&nbsp;</td>
            <td width="26"><div id="hd01_03"> </div></td>
          </tr>
          <tr>
            <td background="<?php echo $mosConfig_live_site;?>/templates/mont_darkpipes/images/11-01.gif" bgcolor="#2A2A2A">&nbsp;</td>
            <td bgcolor="#2A2A2A"><?php mosLoadModules 'user3', -1); ?></td>
            <td width="150" bgcolor="#2A2A2A"><?php mosLoadModules 'user4', -1); ?></td>
            <td valign="top" background="<?php echo $mosConfig_live_site;?>/templates/mont_darkpipes/images/13-05.gif" bgcolor="#2A2A2A"><img src="<?php echo $mosConfig_live_site;?>/templates/mont_darkpipes/images/11-05.gif" width="26" height="19"></td>
          </tr>
        </table>
        <table width="100%"  border="0" cellspacing="0" cellpadding="0">
          <tr>
            <td width="15" height="25" background="<?php echo $mosConfig_live_site;?>/templates/mont_darkpipes/images/15-01.gif" bgcolor="#2A2A2A">&nbsp;</td>
            <td width="59" background="<?php echo $mosConfig_live_site;?>/templates/mont_darkpipes/images/15-03.gif" bgcolor="#2A2A2A"><div id="hd02_02"></div></td>
            <td width="25" background="<?php echo $mosConfig_live_site;?>/templates/mont_darkpipes/images/15-04.gif" bgcolor="#2A2A2A">&nbsp;</td>
            <td background="<?php echo $mosConfig_live_site;?>/templates/mont_darkpipes/images/15-03.gif" bgcolor="#2A2A2A">&nbsp;</td>
            <td width="25" background="<?php echo $mosConfig_live_site;?>/templates/mont_darkpipes/images/15-03.gif" bgcolor="#2A2A2A"><div id="pipe_bottom01"></div></td>
            <td width="26" background="<?php echo $mosConfig_live_site;?>/templates/mont_darkpipes/images/15-05.gif" bgcolor="#2A2A2A">&nbsp;</td>
          </tr>
        </table>
<?php
   }
   ?>

<!-- end user 3 and user 4 **************************************************************** -->

      <table width="100%" border="0" cellspacing="0" cellpadding="0">
          <tr>
           
<!-- menu left **************************************************************** -->
<!--             <td width="201" valign="top" background="<?php echo $mosConfig_live_site;?>/templates/mont_darkpipes/images/left.gif" bgcolor="#555555">   -->
            <td width="201" valign="top" background="<?php echo $mosConfig_live_site;?>/templates/mont_darkpipes/images/left.gif" bgcolor="#555555">
  <div id="top_left_box">
                <div id="distance90"></div>
<!--                <div id="one_line_01"></div>     -->
              </div>
                <div class="clr"></div>
               
                  <table width="201" border="0" cellpadding="0" cellspacing="0">
                    <tr>
  <td><div id="hd01_01"></div></td>
  <td background="<?php echo $mosConfig_live_site;?>/templates/mont_darkpipes/images/10-02.gif" bgcolor="#2A2A2A">&nbsp;</td>
  <td><div id="hd01_03"></div></td>
</tr>
<tr>
  <td background="<?php echo $mosConfig_live_site;?>/templates/mont_darkpipes/images/11-01.gif" bgcolor="#2A2A2A"></td>
                      <td width="160" valign="top" bgcolor="#2a2a2a"><?php mosLoadModules 'left', -); ?></td>
                      <td width="26" align="right" valign="top" background="<?php echo $mosConfig_live_site;?>/templates/mont_darkpipes/images/13-05.gif" bgcolor="#2A2A2A"><img src="<?php echo $mosConfig_live_site;?>/templates/mont_darkpipes/images/11-05.gif" width="26" height="19"></td>
                    </tr>
              </table>
                <div class="clr"></div>
                <div id="left_box">
                  <div id="hd02_01"></div>
                  <div id="hd02_02"></div>
                  <div id="hd02_03"></div>
                  <div id="hd02_04"></div>
                  <div id="hd02_05"></div>
                  <div id="hd02_06"></div>
                </div>
                <div class="clr"></div>
                <div id="distance90"></div>
                <div id="one_line_01"></div>
            </td>
<!-- menu left end **************************************************************** -->

            <td width="7"><div id="distance10"></div></td>
            <!-- important little distance from 10 pixels -->
            <td align="right" valign="top" class="right-backgroung">
<!-- banner module **************************************************************** -->
      <?php
         
if ( mosCountModules'banner' ) >= 1 // you have deactivate the banner module, this table goes hidden in joomla
            
?>




<div id="distance61"></div>
                <!-- important distance from right border for the pipeline -->
                <div id="pipe_right"></div>
                <div class="clr"></div>


                <table width="679"  border="0" cellspacing="0" cellpadding="0">
                  <tr>
                    <td width="15" height="15"><div id="hd01_01"></div></td>
                    <td height="15" background="<?php echo $mosConfig_live_site;?>/templates/mont_darkpipes/images/10-02.gif" bgcolor="#2A2A2A">&nbsp;</td>
                    <td width="26" height="15"><div id="hd01_03"></div></td>
                  </tr>
                  <tr>
                    <td width="15" background="<?php echo $mosConfig_live_site;?>/templates/mont_darkpipes/images/11-01.gif" bgcolor="#2A2A2A">&nbsp;</td>
                    <td><table width="100%"  border="0" cellpadding="0" cellspacing="0" bgcolor="#2A2A2A">
                        <tr>
                          <td align="center" valign="middle"><?php mosLoadModules'banner', -); ?></td>
                          <td width="5">&nbsp;</td>
                          <td width="165" height="68"><img src="<?php echo $mosConfig_live_site;?>/templates/mont_darkpipes/images/powered_by.png" width="165" height="68"></td>
                        </tr>
                    </table></td>
                    <td width="26" valign="top" background="<?php echo $mosConfig_live_site;?>/templates/mont_darkpipes/images/13-05.gif" bgcolor="#2A2A2A"><img src="<?php echo $mosConfig_live_site;?>/templates/mont_darkpipes/images/11-05.gif" width="26" height="19"></td>
                  </tr>
                  <tr>
                    <td width="15" height="25" background="<?php echo $mosConfig_live_site;?>/templates/mont_darkpipes/images/15-01.gif" bgcolor="#2A2A2A">&nbsp;</td>
                    <td background="<?php echo $mosConfig_live_site;?>/templates/mont_darkpipes/images/15-03.gif" bgcolor="#2A2A2A"><div id="hd02_02"></div>
                        <div id="pipe_bottom01"></div></td>
                    <td background="<?php echo $mosConfig_live_site;?>/templates/mont_darkpipes/images/15-05.gif" bgcolor="#2A2A2A">&nbsp;</td>
                  </tr>
              </table>
            <?php
            
}
             
?>

<!-- end banner module ********************************************************************************* -->

<!-- begin menu right and main_body ******************************************************************** -->
   <?php
      
if ( mosCountModules'right' )  >= 1// menu right activ, show this part from table
         
{
         
?>

                <table width="100%"  border="0" cellspacing="0" cellpadding="0">
                  <tr>
                    <td width="100%" align="left" valign="top">
<table width="100%"  border="0" cellspacing="0" cellpadding="0">
                        <tr>
                          <td width="15" height="10"></td>
                          <td></td>
                          <td width="26"></td>
                          <td width="10"></td>
                        </tr>
                        <tr>
                          <td bgcolor="#2A2A2A"><div id="hd01_01"></div>
                              <!-- corner-top-left --></td>
                          <td background="<?php echo $mosConfig_live_site;?>/templates/mont_darkpipes/images/10-02.gif" bgcolor="#2A2A2A"></td>
                          <td><div id="hd01_03"></div>
                              <!-- corner-top-right --></td>
                          <td>&nbsp;</td>
                        </tr>
                        <tr>
                          <td background="<?php echo $mosConfig_live_site;?>/templates/mont_darkpipes/images/11-01.gif" bgcolor="#2A2A2A">&nbsp;</td>
                          <td align="left" valign="top" bgcolor="#2A2A2A">
 
 
                          <!-- output in this window / user 1, user2, pathway and main body / simply ****************** -->
  <table width="100%"  border="0" cellspacing="0" cellpadding="0">
 
  <!-- user 1 / 2 active? then show this line -->
  <?php
         $user 0;
     if ( mosCountModules'user1' ) == 1)
     {
 $user 1;
 }
 if ( mosCountModules'user2' ) == 1)
     {
 $user 1;
 }
 if ( $user == )
     {
 ?>
<tr><td>
<table width="100%" cellpadding="0" cellspacing="0" border="0">
   <tr>
      <?php if ( mosCountModules'user1' ) == 1)     // ask joomla from user 1
                                              
{
              ?>

                                              <td width="50%" valign="top"><?php mosLoadModules 'user1', -2); ?></td>
                                              <?php
              }
                                            if ( 
mosCountModules'user2' ) == 1)     // ask joomla from user 2
                                              
{
              ?>

                                              <td width="50%" valign="top"><?php mosLoadModules 'user2', -2); ?></td>
                                              <?php
              }
              ?>

       </tr>
</table></td></tr>
                                 <?php
             }
 ?>

                            <tr>
                              <td class="home"><?php mosPathWay(); ?></td>
                            </tr>
<tr>
  <td><img src="<?php echo $mosConfig_live_site;?>/templates/mont_darkpipes/images/spacer.gif" height="3" width="1"></td>
</tr>
                            <tr>
                              <td><?php mosMainBody(); ?></td>
                            </tr>
                          </table>
                          </td>
                          <td valign="top" background="<?php echo $mosConfig_live_site;?>/templates/mont_darkpipes/images/13-05.gif" bgcolor="#2A2A2A"><img src="<?php echo $mosConfig_live_site;?>/templates/mont_darkpipes/images/11-05.gif" width="26" height="19"></td>
                          <td>&nbsp;</td>
                        </tr>
                        <tr>
                          <td height="25" background="<?php echo $mosConfig_live_site;?>/templates/mont_darkpipes/images/15-01.gif" bgcolor="#2A2A2A">&nbsp;</td>
                          <td background="<?php echo $mosConfig_live_site;?>/templates/mont_darkpipes/images/15-03.gif" bgcolor="#2A2A2A"><div id="hd02_02"></div></td>
                          <td background="<?php echo $mosConfig_live_site;?>/templates/mont_darkpipes/images/15-05.gif" bgcolor="#2A2A2A">&nbsp;</td>
                          <td>&nbsp;</td>
                        </tr>
                    </table></td>

<!--                <td align="right" valign="top" background="<?php echo $mosConfig_live_site;?>/templates/mont_darkpipes/images/right-bg.gif"><table width="201"  border="0" cellspacing="0" cellpadding="0">  -->
                    <td align="right" valign="top" background="<?php echo $mosConfig_live_site;?>/templates/mont_darkpipes/images/right-bg.gif"><table width="201"  border="0" cellspacing="0" cellpadding="0">

<!-- end main body - begin menu right **************************************************** -->

<!-- fondo start **************************************************** -->

<?php
         
if ( mosCountModules'footer' ) >= 1 // you have deactivate the banner module, this table goes hidden in joomla
            
?>




<div id="distance200"></div>
                <!-- important distance from right border for the pipeline -->
                <div id="pipe_right"></div>
                <div class="clr"></div>


                <table width="200"  border="0" cellspacing="0" cellpadding="0">
                  <tr>
                    <td width="15" height="15"><div id="hd01_01"></div></td>
                    <td height="15" background="<?php echo $mosConfig_live_site;?>/templates/mont_darkpipes/images/10-02.gif" bgcolor="#2A2A2A">&nbsp;</td>
                    <td width="26" height="15"><div id="hd01_03"></div></td>
                  </tr>
                  <tr>
                    <td width="15" background="<?php echo $mosConfig_live_site;?>/templates/mont_darkpipes/images/11-01.gif" bgcolor="#2A2A2A">&nbsp;</td>
                    <td><table width="100%"  border="0" cellpadding="0" cellspacing="0" bgcolor="#2A2A2A">
                        <tr>
                          <td align="center" valign="middle"><?php mosLoadModules'footer', -); ?></td>
                          <td width="5">&nbsp;</td>

                        </tr>
                    </table></td>
                    <td width="26" valign="top" background="<?php echo $mosConfig_live_site;?>/templates/mont_darkpipes/images/13-05.gif" bgcolor="#2A2A2A"><img src="<?php echo $mosConfig_live_site;?>/templates/mont_darkpipes/images/11-05.gif" width="26" height="19"></td>
                  </tr>
                  <tr>
                    <td width="15" height="25" background="<?php echo $mosConfig_live_site;?>/templates/mont_darkpipes/images/15-01.gif" bgcolor="#2A2A2A">&nbsp;</td>
                    <td background="<?php echo $mosConfig_live_site;?>/templates/mont_darkpipes/images/15-03.gif" bgcolor="#2A2A2A"><div id="hd02_02"></div>
                        <div id="pipe_bottom01"></div></td>
                    <td background="<?php echo $mosConfig_live_site;?>/templates/mont_darkpipes/images/15-05.gif" bgcolor="#2A2A2A">&nbsp;</td>
                  </tr>
              </table>
            <?php
            
}
             
?>


<!-- end fondo **************************************************** -->

                        <tr>
                          <td width="15"></td>
                          <td width="160"><div id="pipe_down"></div></td>
                          <td width="26"></td>
                        </tr>
                        <tr>
                          <td background="<?php echo $mosConfig_live_site;?>/templates/mont_darkpipes/images/10-02.gif" bgcolor="#2A2A2A"><div id="hd01_01"></div>
                              <!-- corner-top-left --></td>
                          <td background="<?php echo $mosConfig_live_site;?>/templates/mont_darkpipes/images/10-02.gif" bgcolor="#2a2a2a"></td>
                          <td><div id="hd01_03"></div>
                              <!-- corner-top-right --></td>
                        </tr>
                        <tr>
                          <td background="<?php echo $mosConfig_live_site;?>/templates/mont_darkpipes/images/11-01.gif" bgcolor="#2A2A2A">&nbsp;</td>
                          <td align="left" valign="top" bgcolor="#2A2A2A"><?php mosLoadModules 'right', -); ?></td>
                          <td valign="top" background="<?php echo $mosConfig_live_site;?>/templates/mont_darkpipes/images/13-05.gif" bgcolor="#2A2A2A"><img src="<?php echo $mosConfig_live_site;?>/templates/mont_darkpipes/images/11-05.gif" width="26" height="19"></td>
                        </tr>
                        <tr>
                          <td background="<?php echo $mosConfig_live_site;?>/templates/mont_darkpipes/images/15-01.gif" bgcolor="#2A2A2A">&nbsp;</td>
                          <td background="<?php echo $mosConfig_live_site;?>/templates/mont_darkpipes/images/15-03.gif" bgcolor="#2A2A2A"><div id="hd02_02"></div>
                              <div id="pipe_bottom01"></div></td>
                          <td background="<?php echo $mosConfig_live_site;?>/templates/mont_darkpipes/images/15-05.gif" bgcolor="#2A2A2A">&nbsp;</td>
                        </tr>
                    </table></td>
                  </tr>
                </table>
<!-- end menu right and main_body ******************************************************************** -->

<!-- begin only main_body, without menu right ******************************************************** -->
          <?php
            
}
   else
     {
 ?>

                <table width="100%"  border="0" cellspacing="0" cellpadding="0">
                  <tr>
                    <td width="15"></td>
                    <td><div id="pipe_down"></div></td>
                    <td width="26"></td>
                  </tr>
                  <tr>
                    <td background="<?php echo $mosConfig_live_site;?>/templates/mont_darkpipes/images/10-02.gif" bgcolor="#2A2A2A"><div id="hd01_01"></div>
                        <!-- corner-top-left --></td>
                    <td background="<?php echo $mosConfig_live_site;?>/templates/mont_darkpipes/images/10-02.gif" bgcolor="#2a2a2a"></td>
                    <td><div id="hd01_03"></div>
                        <!-- corner-top-right --></td>
                  </tr>
                  <tr>
                    <td background="<?php echo $mosConfig_live_site;?>/templates/mont_darkpipes/images/11-01.gif" bgcolor="#2A2A2A">&nbsp;</td>
                    <td align="left" valign="top" bgcolor="#2A2A2A">



<table width="100%"  border="0" cellspacing="0" cellpadding="0">
 
  <!-- user 1 / 2 active? then show this line -->
  <?php
         $user 0;
     if ( mosCountModules'user1' ) == 1)
     {
 $user 1;
 }
 if ( mosCountModules'user2' ) == 1)
     {
 $user 1;
 }
 if ( $user == )
     {
 ?>
<tr><td>
<table width="100%" cellpadding="0" cellspacing="0" border="0">
   <tr>
      <?php if ( mosCountModules'user1' ) == 1)     // ask joomla from user 1
                                              
{
              ?>

                                              <td width="50%" valign="top"><?php mosLoadModules 'user1', -2); ?></td>
                                              <?php
              }
                                            if ( 
mosCountModules'user2' ) == 1)     // ask joomla from user 2
                                              
{
              ?>

                                              <td width="50%" valign="top"><?php mosLoadModules 'user2', -2); ?></td>
                                              <?php
              }
              ?>

       </tr>
</table></td></tr>
                                 <?php
             }
 ?>

                            <tr>
                              <td class="home"><?php mosPathWay(); ?></td>
                            </tr>
<tr>
  <td><img src="<?php echo $mosConfig_live_site;?>/templates/mont_darkpipes/images/spacer.gif" height="3" width="1"></td>
</tr>
                            <tr>
                              <td><?php mosMainBody(); ?></td>
                            </tr>
                      </table>                   


</td>
    <td valign="top" background="<?php echo $mosConfig_live_site;?>/templates/mont_darkpipes/images/13-05.gif" bgcolor="#2A2A2A"><img src="<?php echo $mosConfig_live_site;?>/templates/mont_darkpipes/images/11-05.gif" width="26" height="19"></td>
                  </tr>
                  <tr>
                    <td background="<?php echo $mosConfig_live_site;?>/templates/mont_darkpipes/images/15-01.gif" bgcolor="#2A2A2A">&nbsp;</td>
                    <td background="<?php echo $mosConfig_live_site;?>/templates/mont_darkpipes/images/15-03.gif" bgcolor="#2A2A2A"><div id="hd02_02"></div>
                        <div id="pipe_bottom01"></div></td>
                    <td background="<?php echo $mosConfig_live_site;?>/templates/mont_darkpipes/images/15-05.gif" bgcolor="#2A2A2A">&nbsp;</td>
                  </tr>
                </table>
          <?php
            
}
             
?>

<!-- end only main_body, without menu right ************************************************************* -->

            </td>
          </tr>
        </table>
<table width="100%"  border="0" cellspacing="0" cellpadding="0">
          <tr>
            <td width="74">&nbsp;</td>
            <td width="25" height="28" background="<?php echo $mosConfig_live_site;?>/templates/mont_darkpipes/images/50-00.gif">&nbsp;</td>
            <td background="<?php echo $mosConfig_live_site;?>/templates/mont_darkpipes/images/50-01.gif">&nbsp;</td>
            <td width="28" background="<?php echo $mosConfig_live_site;?>/templates/mont_darkpipes/images/50-02.gif">&nbsp;</td>
            <td width="37">&nbsp;</td>
          </tr>
        </table>
  </td>
      <td class="mb02_03">&nbsp;</td>
    </tr>
    <tr>
      <td class="mb03_01">&nbsp;</td>
      <td class="mb03_02">&nbsp;</td>
      <td class="mb03_03">&nbsp;</td>
    </tr>
<tr align="center">
  <td colspan="3">
     <!-- This Template is COPYRIGHT!!! You don't authority to delete next line. you can stay your name before -->
     <!-- here your name -->&copy; by <a href="http://www.mont-bit.com" target="_blank">Mont-Bit International</a><br>
     &nbsp;
  </td>
</tr>
  </table>
</div>

</body>
</html>


IL CSS E' NEL MESSAGGIO DOPO XK NON MI LASCIAVA SCRIVERE TUTTO IN UN UNICO POST
: Re: inserire nel template una nuova posizione blocchi moduli
: zibudj 19 Feb 2008, 22:40:50
ECCO IL CSS:

:
/* CSS Document */

body {
background-color: #000000;
font-family: Arial, Helvetica, sans-serif;
font-size: 12px;
color: #FFFFFF;
line-height: 120%;
height: 100%;
}

.clr {
clear: both;
}
a:link, a:visited {
color: #CCCCCC;
font-weight: bold;
}
a:active, a:hover {
color: #FFFF00;
font-weight: bold;
}
hr {
line-height: 1px;
}

ul#mainlevel-nav
{
list-style: none;
padding: 0;
margin: 0;
font-size: 0.8em;
}

ul#mainlevel-nav li
{
background-image: none;
padding-left: 0px;
padding-right: 0px;
float: left;
margin: 0;
font-size: 11px;
line-height: 21px;
white-space: nowrap;
border-right: 1px solid #cccccc;
}

ul#mainlevel-nav li a
{
display: block;
padding-left: 15px;
padding-right: 15px;
text-decoration: none;
color: #cccccc;
background: transparent;
}

#buttons>ul#mainlevel-nav li a { width: auto; }

ul#mainlevel-nav li a:hover
{
color: #ffff00;
background: #555555;
}


#search_outer {
float: left;
width: 165px;
}

#search_inner {
  border: 1px solid #cccccc;
padding: 0px;
  height: 21px !important;
  height: 23px;
  overflow: hidden;
}

#search_inner form {
  padding: 0;
  margin: 0;
}

#search_inner .inputbox {
border: 0px;
padding: 3px 3px 3px 5px;
font-family: arial, helvetica, sans-serif;
font-size: 11px;
color: #c64934;
}

#header_outer {
text-align: left;
border: 0px;
margin: 0px;
}

#header {
float: left;
padding: 0px;
margin-right: 2px;
width: 635px;
height: 150px;
background: url(../images/header_short.jpg) no-repeat;
}

#top_outer{
float: left;
width: 165px;
}

#top_inner {
  border: 1px solid #cccccc;
padding: 2px;
  height: 144px !important;
  height: 150px;
  overflow: hidden;
  float: none !important;
  float: left;
}

#left_outer {
  float: left;
margin-top: 2px;
width: 165px;
}

#left_inner {
  border: 1px solid #cccccc;
padding: 2px;
  float: none !important;
  float: left;
}

#content_outer {
padding: 0px;
margin-top: 0px;
margin-left: 2px;
/** border: 1px solid #cccccc; **/
float: left;
width: 635px;
}

#content_inner{
  float: none !important;
  float: left;
  padding: 0;
  padding-top: 2px;
  margin: 0;
}

table.content_table {
  width: 100%;
padding: 0px;
margin: 0px;
}

table.content_table td {
padding: 0px;
margin: 0px;
}


#banner_inner {
float: left;
padding: 0px;
height: 70px;
}

#poweredby_inner {
float: right;
padding: 0px;
margin-left: 0px;
height: 70px;
}

#right_outer {
margin-left: 2px;
width: 165px;
}

#right_inner {
  float: none !important;
  float: left;
  border: 1px solid #cccccc;
  padding: 2px;
}


.user1_inner {
border: 1px solid #cccccc;
  float: none !important;
  float: left;
margin: 0px;
padding: 2px;
}

.user2_inner {
border: 1px solid #cccccc;
  float: none !important;
  float: left;
margin: 0px;
padding: 2px;
}

table td.body_outer {
padding: 2px;
border: 1px solid #cccccc;
}

.maintitle {
color: #ffffff;
font-size: 40px;
padding-left: 15px;
padding-top: 20px;
}

.error {
  font-style: italic;
  text-transform: uppercase;
  padding: 5px;
  color: #cccccc;
  font-size: 14px;
  font-weight: bold;
}

/** old stuff **/

.back_button {
float: left;
  text-align: center;
  font-size: 11px;
  font-weight: bold;
  border: 3px double #cccccc;
  width: auto;
  background: url(../images/button_bg.png) repeat-x;
  padding: 0px 10px;
  line-height: 20px;
  margin: 1px;
}

.pagenav {
  text-align: center;
  font-size: 11px;
  font-weight: bold;
  border: 3px double #cccccc;
  width: auto;
  background: url(../images/button_bg.png) repeat-x;
  padding: 0px 10px;
  line-height: 20px;
  margin: 1px;
}

.pagenavbar {
margin-right: 10px;
float: right;
}

#footer {
text-align: center;
padding: 3px;
}

ul
{
margin: 0;
padding: 0;
list-style: none;
}

li
{
line-height: 15px;
padding-left: 15px;
padding-top: 0px;
background-image: url(../images/arrow.png);
background-repeat: no-repeat;
background-position: 0px 2px;
}


td {
/* text-align: left; */
font-size: 12px;
}




table.contentpaneopen {
  width: 100%;
padding: 0px;
border-collapse: collapse;
border-spacing: 0px;
margin: 0px;
}

table.contentpaneopen td {
   padding-right: 5px;
}

table.contentpaneopen td.componentheading {
padding-left: 4px;
}



table.contentpane {
  width: 100%;
padding: 0px;
border-collapse: collapse;
border-spacing: 0px;
margin: 0px;
}

table.contentpane td {
margin: 0px;
padding: 0px;
}

table.contentpane td.componentheading {
padding-left: 4px;
}

table.contentpaneopen fieldset {
border: 0px;
border-bottom: 1px solid #eee;
}

.button {
  color: #ffff00;
  font-family: Arial, Hevlvetica, sans-serif;
  text-align: center;
  font-size: 11px;
  font-weight: bold;
  border: 3px double #cccccc;
  width: auto;
  background: url(../images/subhead_bg.png) repeat-x;
  padding: 0px 5px;
  line-height: 18px !important;
  line-height: 16px;
  height: 26px !important;
  height: 24px;
  margin: 1px;
}

.inputbox {
padding: 2px;
border:solid 1px #cccccc;
background-color: #ffffff;
}

#mod_login_remember.inputbox { /* Extra wegen MS-IE, damit kein verrutschter Border */
border: none;        /* das Layout verunstaltet                           */
     background: transparent;
}

.componentheading {
background: url(../images/subhead_bg.png) repeat-x;
color: #cccccc;
text-align: left;
padding-top: 4px;
padding-left: 4px;
height: 21px;
font-weight: bold;
font-size: 12px;
text-transform: uppercase;

}

.contentcolumn {
padding-right: 5px;
}

.contentheading {
height: 30px;
color: #cccccc;
font-weight: bold;
font-size: 14px;
white-space: nowrap;
background: url(../images/contentheading_bg.png) repeat-x;
padding-left: 4px;
}



.contentpagetitle {
font-size: 13px;
font-weight: bold;
color: #cccccc;
text-align:left;
}

table.searchinto {
width: 100%;
}

table.searchintro td {
font-weight: bold;
}

table.moduletable {
width: 100%;
margin-bottom: 5px;
padding: 0px;
border-spacing: 0px;
border-collapse: collapse;
}

div.moduletable {
padding: 0;
margin-bottom: 2px;
}

table.moduletable th, div.moduletable h3 {
background: url(../images/subhead_bg.png) repeat-x;
color: #cccccc;
text-align: left;
padding-left: 4px;
height: 21px;
line-height: 21px;
font-weight: bold;
font-size: 10px;
text-transform: uppercase;
margin: 0 0 2px 0;
}

table.moduletable td {
font-size: 11px;
padding: 0px;
margin: 0px;
font-weight: normal;
}

table.pollstableborder td {
  padding: 2px;
}

.sectiontableheader {
  font-weight: bold;
  background: #555555;
  padding: 4px;
}

.sectiontablefooter {

}

.sectiontableentry1 {
background-color : #3e3e3e;
}

.sectiontableentry2 {
background-color : #2a2a2a;
}

.small {
color: #999999;
font-size: 11px;
}

.createdate {
height: 15px;
padding-bottom: 10px;
color: #999999;
font-size: 11px;
}

.modifydate {
height: 15px;
padding-top: 10px;
color: #999999;
font-size: 11px;
}

table.contenttoc {
  border: 1px solid #cccccc;
  padding: 2px;
  margin-left: 2px;
  margin-bottom: 2px;
}

table.contenttoc td {
  padding: 2px;
}

table.contenttoc th {
  background: url(../images/subhead_bg.png) repeat-x;
  color: #666666;
text-align: left;
padding-top: 2px;
padding-left: 4px;
height: 21px;
font-weight: bold;
font-size: 10px;
text-transform: uppercase;
}

a.mainlevel:link, a.mainlevel:visited {
display: block;
background: url(../images/menu_bg.png) no-repeat;
vertical-align: middle;
font-size: 11px;
font-weight: bold;
color: #ccc;
text-align: left;
padding-top: 5px;
padding-left: 18px;
height: 20px !important;
height: 25px;
width: 100%;
text-decoration: none;
}

a.mainlevel:hover {
background-position: 0px -25px;
text-decoration: none;
color: #ffff00;
}

a.mainlevel#active_menu {
background-position: 0px -25px;
color:#fff;
font-weight: bold;
}

a.mainlevel#active_menu:hover {
color: #fff;
}

a.sublevel:link, a.sublevel:visited {
padding-left: 1px;
vertical-align: middle;
font-size: 11px;
font-weight: bold;
color: #c64934;
text-align: left;
}

a.sublevel:hover {
color: #900;
text-decoration: none;
}

a.sublevel#active_menu {
color: #333;
}

.highlight {
background-color: Yellow;
color: Blue;
padding: 0;
}
.code {
background-color: #ddd;
border: 1px solid #bbb;
}

form {
/* removes space below form elements */
margin: 0;
  padding: 0;
}

div.mosimage {
  border: 1px solid #ccc;
}

.mosimage {
  border: 1px solid #cccccc;
  margin: 5px
}

.mosimage_caption {
  margin-top: 2px;
  background: #efefef;
  padding: 1px 2px;
  color: #666;
  font-size: 10px;
  border-top: 1px solid #cccccc;
}

span.article_seperator {
display: block;
height: 1.5em;
}
: Re: inserire nel template una nuova posizione blocchi moduli
: pixma22 24 Feb 2008, 12:04:16
mi posti il link del sito?
: Re: inserire nel template una nuova posizione blocchi moduli
: zibudj 25 Feb 2008, 17:13:23
www.itixxsegato.altervista.org