Back to top

Autore Topic: template solartransport ... come "allargarlo"  (Letto 2424 volte)

Offline Druido

  • Esploratore
  • **
  • Post: 166
    • Mostra profilo
template solartransport ... come "allargarlo"
« il: 04 Set 2006, 13:44:58 »
Riposto qui una mia domanda che avevo già presentanto all'inerno di un altro topic.

Per il mio sito www.lafalconeria.it ho utilizzato il template solartransport ora sto cercando di modificare questo template per utilizzarlo nel forum dove vorrei che i il forum stesso ricoprisse l'intera parte centrale dell'impaginazione.

Ho preso il file index.php e ho cercato di modificarlo, ci ho lavorato diverse ore ma proprio non ne sono venuto fuori.

Riporto di seguito il codice se qualcuno fosse così gentile di modificarlo o da spiegarmi cosa devo canceelare. Grazie

Citazione
<?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 = 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();
}
$collspan_offset = ( mosCountModules( 'right' ) + mosCountModules( 'user2' ) ) ? 2 : 1;
//script to determine which div setup for layout to use based on module configuration
$user1 = 0;
$user2 = 0;
$colspan = 0;
$right = 0;
// banner combos

//user1 combos
if ( mosCountModules( 'user1' ) + mosCountModules( 'user2' ) == 2) {
   $user1 = 2;
   $user2 = 2;
   $colspan = 3;
} elseif ( mosCountModules( 'user1' ) == 1 ) {
   $user1 = 1;
   $colspan = 1;
} elseif ( mosCountModules( 'user2' ) == 1 ) {
   $user2 = 1;
   $colspan = 1;
}

//right based combos
if ( mosCountModules( 'right' ) and ( empty( $_REQUEST['task'] ) || $_REQUEST['task'] != 'edit' ) ) {
   $right = 1;
}
?>
<meta http-equiv="Content-Type" content="text/html; <?php echo _ISO; ?>" />
<link href="<?php echo $mosConfig_live_site;?>/templates/solartransport/css/template_css.css" rel="stylesheet" type="text/css"/>
<link rel="stylesheet" href="<?php echo $mosConfig_live_site;?>/templates/solartransport/css/print.css" type="text/css" media="print" />
</head>
<body>

<div align="center">
   <table border="0" cellpadding="0" cellspacing="0" width="808">
      <tr>
         <td class="outline">
              <div id="pathway_outer">
                <div id="pathway_inner">
                   <div id="pathway_text">
                   <?php mosPathWay(); ?>
                   </div>
                   <div id="buttons">
                   <?php mosLoadModules ( 'user3', -1); ?>
                   </div>
                </div>
              </div>
              <div id="search_outer">
                <div id="search_inner">
                <?php mosLoadModules ( 'user4', -1 ); ?>
                </div>
              </div>
              <div class="clr"></div>
              <div id="header_outer">
                 <div id="header">
                 &nbsp;
                 </div>

<div id="top_outer">
                   <div id="top_inner">
                   <?php
                     if ( mosCountModules( 'top' ) ) {
                        mosLoadModules ( 'top' );
                     } else {
                        ?>
                        <span class="error">Top Module Empty</span>
                        <?php
                     }
                     ?>
                    </div>
                 




               </div>
              </div>
             






                 
              </div>
              <div id="content_outer">
                  <div id="content_inner">
                  <?php
                 if ( mosCountModules ('banner') ) {
                    ?>
                    <table border="0" cellpadding="0" cellspacing="0" width="100%" class="content_table">
                     <tr>
                        <td>
                           <div id="banner_inner">
                           <img src="<?php echo $mosConfig_live_site;?>/templates/solartransport/images/advertisement.png" alt="advertisement.png, 0 kB" title="advertisement" border="0" height="8" width="468"/>

                          <?php mosLoadModules( 'banner', -1 ); ?>

                           </div>
                           <div id="poweredby_inner">
                              <img src="<?php echo $mosConfig_live_site;?>/templates/solartransport/images/powered_by.png" alt="powered_by.png, 1 kB" title="powered_by" border="0" height="68" width="165"/>
   
                           </div>
                        </td>
                     </tr>
                     </table>
                     <?php
                 }
                 ?>
                 <table border="0" cellpadding="0" cellspacing="0" width="100%" class="content_table">
                  <tr valign="top">
                     <td width="99%">
                        <table border="0" cellpadding="0" cellspacing="0" width="100%" class="content_table">
                       
                        <?php
                        if ($colspan > 0) {
                        ?>
                           <tr valign="top">
                              <?php
                             if ( $user1 > 0 ) {
                                ?>
                                <td width="50%">
                                   <div class="user1_inner">
                                   <?php mosLoadModules ( 'user1' ); ?>
                                   </div>
                                </td>

                                <?php
                             }   
                             if ( $colspan == 3) {
                               ?>
                                 <td width="2">
                                    <img src="<?php echo $mosConfig_live_site;?>/templates/solartransport/images/spacer.png" alt="" title="spacer" border="0" height="10" width="2"/>   
                                 </td>
                              <?php
                              }
                             if ( $user2 > 0 ) {
                                ?>
                                <td width="50%">
                                   <div class="user2_inner">
                                   <?php mosLoadModules ( 'user2' ); ?>
                                   </div>
                                </td>
                                <?php
                             }   
                              ?>
                           </tr>
                           <tr>
                              <td colspan="<?php echo $colspan; ?>">
                                 <img src="<?php echo $mosConfig_live_site;?>/templates/solartransport/images/spacer.png" alt="" title="spacer" border="0" height="2" width="100"/>
   
                              </td>
                           </tr>
                           <?php
                           }
                        ?>
                        <tr>
                           <td colspan="<?php echo $colspan; ?>" class="body_outer">
                              <?php mosMainBody(); ?>
                           </td>
                        </tr>
                        </table>
                     
                     
                     </td>
                     <?php
                     if ( $right > 0 ) {
                    ?>
                    <td>
                       <div id="right_outer">
                          <div id="right_inner">
                          <?php mosLoadModules ( 'right' ); ?>
                          </div>
                       </div>
                    </td>
                    <?php
                 }
                 ?>
                             
                  </tr>
                  </table>
              </div>
           </div>
        </td>
     </tr>
  </table>
</div>


</body>
</html>
Memento Audere Semper

Offline carloernesto

  • Abituale
  • ****
  • Post: 828
  • Sesso: Maschio
  • E=mc²
    • Mostra profilo
« Ultima modifica: 04 Set 2006, 22:59:00 da carloernesto »
prima di postare, hai provato a cercare sul forum? hai guardato anche nell'area download? sei sicuro....

Offline Druido

  • Esploratore
  • **
  • Post: 166
    • Mostra profilo
Re: template solartransport ... come "allargarlo"
« Risposta #2 il: 05 Set 2006, 08:19:00 »
Si grazie ho letto ma sono proprio stordito e non ho capito come fare... o almeno le prove che ho fatto non hanno avuto buon fine.
Memento Audere Semper

Offline Druido

  • Esploratore
  • **
  • Post: 166
    • Mostra profilo
Re: template solartransport ... come "allargarlo"
« Risposta #3 il: 06 Set 2006, 15:51:28 »
HO letto la guida 100 volte, fatto mille prove ma non ne vengo fuori :(
se qualcuno mi risolvesse il problema sono disposto a pagare...eventualmente contattatemi.
Memento Audere Semper

Offline carloernesto

  • Abituale
  • ****
  • Post: 828
  • Sesso: Maschio
  • E=mc²
    • Mostra profilo
Re: template solartransport ... come "allargarlo"
« Risposta #4 il: 06 Set 2006, 21:12:06 »
allega il template, quando ho un attimo di tempo gli do un sguardo
se non ho capito male vorresti avere solo la testata e fondere le 3 colonne in una sola, giusto?
prima di postare, hai provato a cercare sul forum? hai guardato anche nell'area download? sei sicuro....

Offline Druido

  • Esploratore
  • **
  • Post: 166
    • Mostra profilo
Re: template solartransport ... come "allargarlo"
« Risposta #5 il: 06 Set 2006, 22:27:12 »
Esatto hai capito benissimo, mi piacerebbe avere solo la testata alta con magari anche l'immagine casuale e sotto tutte le 3 colonne per il forum

[allegato eliminato da un amministratore]
Memento Audere Semper

Offline Druido

  • Esploratore
  • **
  • Post: 166
    • Mostra profilo
Re: template solartransport ... come "allargarlo"
« Risposta #6 il: 14 Set 2006, 22:37:17 »
 :'(
Memento Audere Semper

Offline carloernesto

  • Abituale
  • ****
  • Post: 828
  • Sesso: Maschio
  • E=mc²
    • Mostra profilo
Re: template solartransport ... come "allargarlo"
« Risposta #7 il: 15 Set 2006, 14:03:20 »
ciao,
ho impostato il lavoro, ma devi controllare sui vari browser...
ho commentato il codice in modo che tu possa vedere le parti da eliminare,
lavora sul backgroud nel css per ripristinare il lavoro
buon divertimento...


<?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 = 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();
}
$collspan_offset = ( mosCountModules( 'right' ) + mosCountModules( 'user2' ) ) ? 2 : 1;
//script to determine which div setup for layout to use based on module configuration
$user1 = 0;
$user2 = 0;
$colspan = 0;
$right = 0;
// banner combos

//user1 combos
if ( mosCountModules( 'user1' ) + mosCountModules( 'user2' ) == 2) {
   $user1 = 2;
   $user2 = 2;
   $colspan = 3;
} elseif ( mosCountModules( 'user1' ) == 1 ) {
   $user1 = 1;
   $colspan = 1;
} elseif ( mosCountModules( 'user2' ) == 1 ) {
   $user2 = 1;
   $colspan = 1;
}




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

<div align="center">
   <table border="0" cellpadding="0" cellspacing="0" width="808">
      <tr>
         <td class="outline">
              <div id="pathway_outer">
                <div id="pathway_inner">
                   <div id="pathway_text">
                   <?php mosPathWay(); ?>
                   </div>
                   <div id="buttons">
                   <?php mosLoadModules ( 'user3', -1); ?>
                   </div>
                </div>
              </div>
              <div id="search_outer">
                <div id="search_inner">
                <?php mosLoadModules ( 'user4', -1 ); ?>
                </div>
              </div>
              <div class="clr"></div>
              <div id="header_outer">
                 <div id="header">
                 &nbsp;
                 </div>

<div id="top_outer">
               
                   <div id="top_inner">
                   <?php
                     if ( mosCountModules( 'top' ) ) {
                        mosLoadModules ( 'top' );
                     } else {
                        ?>
                        <span class="error">Top Module Empty</span>
                        <?php
                     }
                     ?>
                    </div>
               </div>
              </div>
                               
              </div>
              <div id="content_outer">
                  <div id="content_inner">
             
              <!-- spazio banner  da togliere se non lo vuoi-->
              <!--
                  <?php
                 if ( mosCountModules ('banner') ) {
                    ?><!--  spazio banner -->
                    <table border="0" cellpadding="0" cellspacing="0" width="100%" class="content_table">
                     <tr>
                        <td>
                           <div id="banner_inner">
                           <img src="<?php echo $mosConfig_live_site;?>/templates/solartransport/images/advertisement.png" alt="advertisement.png, 0 kB" title="advertisement" border="0" height="8" width="468"/>

                          <?php mosLoadModules( 'banner', -1 ); ?>

                           </div>
                           <div id="poweredby_inner">
                              <img src="<?php echo $mosConfig_live_site;?>/templates/solartransport/images/powered_by.png" alt="powered_by.png, 1 kB" title="powered_by" border="0" height="68" width="165"/>
   
                           </div>
                        </td>
                     </tr>
                     </table>
                     <?php
                 }
                 ?>-->

            
             <!-- area da cancellare -->
            
                 <!--<table border="0" cellpadding="0" cellspacing="0" width="100%" class="content_table">
                  <tr valign="top">
                     <td width="99%">
                        <table border="0" cellpadding="0" cellspacing="0" width="100%" class="content_table">
                       
                        <?php
                        if ($colspan > 0) {
                        ?>
                           <tr valign="top">
                              <?php
                             if ( $user1 > 0 ) {
                                ?>
                                <td width="50%">
                                   <div class="user1_inner">
                                   <?php mosLoadModules ( 'user1' ); ?>
                                   </div>
                                </td>

                                <?php
                             }   
                             if ( $colspan == 3) {
                               ?>
                                 <td width="2">
                                    <img src="<?php echo $mosConfig_live_site;?>/templates/solartransport/images/spacer.png" alt="" title="spacer" border="0" height="10" width="2"/>   
                                 </td>
                              <?php
                              }
                             if ( $user2 > 0 ) {
                                ?>
                                <td width="50%">
                                   <div class="user2_inner">
                                   <?php mosLoadModules ( 'user2' ); ?>
                                   </div>
                                </td>
                                <?php
                             }   
                              ?>
                           </tr>
                           <tr>
                              <td colspan="<?php echo $colspan; ?>">
                                 <img src="<?php echo $mosConfig_live_site;?>/templates/solartransport/images/spacer.png" alt="" title="spacer" border="0" height="2" width="100"/>
   
                              </td>
                           </tr>
                           <?php
                           }
                        ?>-->

                  
                  
                  <!-- corpo centrale dove impostare il forum-->
                        <tr>
                           <td colspan="<?php echo $colspan; ?>" class="body_outer">
                              <?php mosMainBody(); ?>
                           </td>
                        </tr>
                        </table>
                  
                     <!--
                     </td><td></tr>
                  </table>
              -->

              </div>
           </div>
        </td>
     </tr>
  </table>
</div>


</body>
</html>
prima di postare, hai provato a cercare sul forum? hai guardato anche nell'area download? sei sicuro....

 



Web Design Bolzano Kreatif