+ Antworten
Ergebnis 1 bis 5 von 5

Thema: Box fürs Module

  1. #1
    Neu an Board
    Registriert seit
    04.02.2004
    Beiträge
    27
    Bedankte sich
    1
    Erhielt 0 Danksagungen
    in 0 Beiträgen

    Standard

    Hi Leutz...

    Habe mal eine Frage...
    Wie bekomme ich es hin, das ich pro Module 1 Kästchen vergebe?

    Also so wie das kleine Kästchen bei dem Usercounter.

    Danke schonmal im voraus.

    mfg
    XiStEr

  2. #2
    Administrator Avatar von Stefan
    Registriert seit
    28.10.2003
    Ort
    Kaarst
    Alter
    44
    Beiträge
    812
    Bedankte sich
    52
    Erhielt 465 Danksagungen
    in 76 Beiträgen

    Standard

    Hi Xister,
    dazu erweitere das Template um die benötigte Anzahl an Tabellen, in denen später das Modul erscheinen soll. Als Inhalt fügst Du folgenden Code ein:

    In die erste Tabelle:
    Code:
    <?php mosLoadModules&#40; "user3" &#41;; >
    In die zweite:
    Code:
    <?php mosLoadModules&#40; "user4" &#41;; >
    usw.

    Nun erweiterst Du das Array in der Datei /administrator/modules.php ab Zeile 165

    Vorher:
    Code:
    // hard code options for now
    	$orders2 = array&#40;&#41;;
    	$orders2&#91;'left'&#93; = array&#40;&#41;;
    	$orders2&#91;'right'&#93; = array&#40;&#41;;
    	$orders2&#91;'top'&#93; = array&#40;&#41;;
    	$orders2&#91;'bottom'&#93; = array&#40;&#41;;
    	$orders2&#91;'inset'&#93; = array&#40;&#41;;
    	$orders2&#91;'user1'&#93; = array&#40;&#41;;
    	$orders2&#91;'user2'&#93; = array&#40;&#41;;
    Nachher:

    Code:
    // hard code options for now
    	$orders2 = array&#40;&#41;;
    	$orders2&#91;'left'&#93; = array&#40;&#41;;
    	$orders2&#91;'right'&#93; = array&#40;&#41;;
    	$orders2&#91;'top'&#93; = array&#40;&#41;;
    	$orders2&#91;'bottom'&#93; = array&#40;&#41;;
    	$orders2&#91;'inset'&#93; = array&#40;&#41;;
    	$orders2&#91;'user1'&#93; = array&#40;&#41;;
    	$orders2&#91;'user2'&#93; = array&#40;&#41;;
    	$orders2&#91;'user3'&#93; = array&#40;&#41;;
    	$orders2&#91;'user4'&#93; = array&#40;&#41;;
    Jetzt brauchst Du nur noch im Adminbereich die entsprechenden Module auf die Position "User3" bzw. "User4" zu stellen.

    Eine weitere Möglichkeit findest Du im Template Raydian019. Schau es Dir mal an, wie es dort gemacht wurde. Hier der Download:
    www.joomlaportal.de/test/raydian019.zip

    Ich hoffe das hilft Dir weiter
    Gruss
    Stefan
    Geändert von Stefanstk (05.08.2004 um 09:19 Uhr)

  3. #3
    Neu an Board
    Registriert seit
    04.02.2004
    Beiträge
    27
    Bedankte sich
    1
    Erhielt 0 Danksagungen
    in 0 Beiträgen

    Standard

    Hi Stefan

    Also irgendwie will das noch nicht so ganz klappen, habe es jetzt mehrmals versucht aber dann kommt irgendwie nen parse fehler, wäre nett wenn du es mir einbauen könntest.

    Danke schonmal im voraus.

    Code:
    <?php echo "<?xml version=\"1.0\">";
    defined&#40; '_VALID_MOS' &#41; or die&#40; 'Direct Access to this location is not allowed.' &#41;;
    >
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http&#58;//www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http&#58;//www.w3.org/1999/xhtml">
    <head>
    <title><?php echo $mosConfig_sitename; ></title>
    <meta **********="Content-Type" content="text/html; <?php echo _ISO; >" />
    <?php
    if &#40;$my->id&#41; &#123;
    	include &#40;"editor/editor.php"&#41;;
    	initEditor&#40;&#41;;
    &#125;
    >
    <?php include &#40;"includes/metadata.php"&#41;; >
    <script language="JavaScript" type="text/javascript">
    <!--
    function MM_reloadPage&#40;init&#41; &#123;  //reloads the window if Nav4 resized
      if &#40;init==true&#41; with &#40;navigator&#41; &#123;if &#40;&#40;appName=="Netscape"&#41;&&&#40;parseInt&#40;appVersion&#41;==4&#41;&#41; &#123;
        document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; &#125;&#125;
      else if &#40;innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH&#41; location.reload&#40;&#41;;
    &#125;
    MM_reloadPage&#40;true&#41;;
    //-->
    </script>
    <link href="<?php echo $mosConfig_live_site;>/templates/peeklime/css/template_css.css" rel="stylesheet" type="text/css" />
    <link rel="shortcut icon" href="images/favicon.ico" />
    <?php // Custom MainMenu extension...
    $database->setQuery&#40;"SELECT * FROM #__menu WHERE menutype = 'mainmenu' AND published ='1' AND parent = '0' ORDER BY ordering"&#41;;
    $mymenu_rows = $database->loadObjectList&#40;&#41;;
    $mymenu_content = "";
    foreach&#40;$mymenu_rows as $mymenu_row&#41; &#123;
    	// print_r&#40;$mymenu_rows&#41;;
    	$mymenulink = $mymenu_row->link;
    	if &#40;$mymenu_row->type != "url"&#41; &#123;
    		$mymenulink .= "&Itemid=$mymenu_row->id";
    	&#125;
    	if &#40;$mymenu_row->type != "separator"&#41; &#123;
    		$mymenu_content .= "<a href=\"".sefRelToAbs&#40;$mymenulink&#41;."\" class=\"bar\">$mymenu_row->name</a><font color=\"#D3F5D0\"> | </font>";
    	&#125;
    &#125;
    $mymenu_content = substr&#40;$mymenu_content,0,strlen&#40;$mymenu_content&#41;-2&#41;;
    >
    </head>
    <body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
    <a name="up" id="up"></a>
    <table id="Table_01" width="100%"  border="0" cellpadding="0" cellspacing="0">
    	<tr>
    		<td height="89" >
    			<table width="100%"  border="0" cellspacing="0" cellpadding="0">
                  <tr>
                    <td width="80" ><img src="<?php echo $mosConfig_live_site;>/templates/peeklime/images/PeekLime_01.gif" width="77" height="89" alt=""></td>
                    <td width="204" align="left" valign="middle"><span class="title"><?php echo $mosConfig_sitename; > </span></td>
                    <td align="left" valign="middle" ><?php mosLoadComponent&#40; "banners" &#41;; ></td>
                  </tr>
                </table></td>
    	</tr>
    	<tr>
    		<td  height="27" background="<?php echo $mosConfig_live_site;>/templates/peeklime/images/PeekLime_06.gif" bgcolor="#000000" style="background-repeat&#58;repeat-x ">
    			<div align="left">
    			  <table width="100%"  border="0" cellpadding="0" cellspacing="0">
                    <tr>
                      <td width="25" align="left" valign="top"><img src="<?php echo $mosConfig_live_site;>/templates/peeklime/images/PeekLime_04.gif" alt="" width="25" height="27" align="top"></td>
                      <td align="left">&nbsp;<span class="pathway">
    				<?php include "pathway.php"; ></span></td>
                      <td width="143" align="right"><table width="100%"  border="0" cellspacing="0" cellpadding="0">
                        <tr>
                          <td align="right" valign="middle"><img src="<?php echo $mosConfig_live_site;>/templates/peeklime/images/search.gif" width="18" height="18" align="absbottom" /></td>
                          <td><form action='<?php echo sefRelToAbs&#40;"index.php"&#41;; >' method='post'>
                          <div align="left">
                            <input class="searchbox" type="text" name="searchword" height="16" size="15" value="<?php echo _SEARCH_BOX; >"  onblur="if&#40;this.value==''&#41; this.value='<?php echo _SEARCH_BOX; >';" onfocus="if&#40;this.value=='<?php echo _SEARCH_BOX; >'&#41; this.value='';" />
                            <input type="hidden" name="option" value="search" />
                          </div>
                        </td></form>
                        </tr>
                      </table></td>
                    </tr>
                  </table>
    	  </div></td>
    	</tr>
    	<tr>
    		<td height="12"  background="<?php echo $mosConfig_live_site;>/templates/peeklime/images/PeekLime_08.gif"></td>
    	</tr>
    	<tr>
    		<td align="center" valign="top"><table width="100%"  border="0" cellspacing="0" cellpadding="0">
      <tr>
        <td align="center" valign="top"><table width="100%"  border="0" cellspacing="0" cellpadding="0">
          <tr align="center" valign="top"><?php if &#40;mosCountModules&#40; "left" &#41; + mosCountModules&#40; "user1" &#41; > 0&#41; &#123; >
            <td width="165"><table width="100%"  border="0" align="center" cellpadding="0" cellspacing="4">
              <tr><?php if &#40;mosCountModules&#40; "left" &#41;&#41; &#123; >
                <td align="center"><table width="100%"  border="0" cellpadding="0" cellspacing="0">
    	<tr>
    		<td width="11">
    			<img src="<?php echo $mosConfig_live_site;>/templates/peeklime/images/ballongrey_01.gif" width="11" height="16" alt=""></td>
    		<td background="<?php echo $mosConfig_live_site;>/templates/peeklime/images/ballongrey_02.gif">
    			<img src="<?php echo $mosConfig_live_site;>/templates/peeklime/images/ballongrey_02.gif" width="24" height="16" alt=""></td>
    		<td width="19">
    			<img src="<?php echo $mosConfig_live_site;>/templates/peeklime/images/ballongrey_03.gif" width="19" height="16" alt=""></td>
    	</tr>
    	<tr>
    		<td background="<?php echo $mosConfig_live_site;>/templates/peeklime/images/ballongrey_04.gif">
    			<img src="<?php echo $mosConfig_live_site;>/templates/peeklime/images/ballongrey_04.gif" width="11" height="21" alt=""></td>
    		<td  height="21" align="left" bgcolor="#E8E8E8">          <?php mosLoadModules &#40; 'left' &#41;; >
    	    </td>
    		<td background="<?php echo $mosConfig_live_site;>/templates/peeklime/images/ballongrey_06.gif">
    			<img src="<?php echo $mosConfig_live_site;>/templates/peeklime/images/ballongrey_06.gif" width="19" height="21" alt=""></td>
    	</tr>
    	<tr>
    		<td rowspan="2">
    			<img src="<?php echo $mosConfig_live_site;>/templates/peeklime/images/ballongrey_07.gif" width="11" height="30" alt=""></td>
    		<td rowspan="2" background="<?php echo $mosConfig_live_site;>/templates/peeklime/images/ballongrey_08.gif">
    			<img src="<?php echo $mosConfig_live_site;>/templates/peeklime/images/ballongrey_08.gif" width="24" height="30" alt=""></td>
    		<td>
    			<img src="<?php echo $mosConfig_live_site;>/templates/peeklime/images/ballongrey_09.gif" width="19" height="29" alt=""></td>
    	</tr>
    </table></td><?php &#125; >
              </tr>
              <tr><?php if &#40;mosCountModules&#40; "user1" &#41;&#41; &#123; >
                <td align="center"><table width="100%"  border="0" cellpadding="0" cellspacing="0">
    	<tr>
    		<td width="11">
    			<img src="<?php echo $mosConfig_live_site;>/templates/peeklime/images/ballonlime_01.gif" width="11" height="16" alt=""></td>
    		<td background="<?php echo $mosConfig_live_site;>/templates/peeklime/images/ballonlime_02.gif">
    			<img src="<?php echo $mosConfig_live_site;>/templates/peeklime/images/ballonlime_02.gif" width="24" height="16" alt=""></td>
    		<td width="19">
    			<img src="<?php echo $mosConfig_live_site;>/templates/peeklime/images/ballonlime_03.gif" width="19" height="16" alt=""></td>
    	</tr>
    	<tr>
    		<td background="<?php echo $mosConfig_live_site;>/templates/peeklime/images/ballonlime_04.gif">
    			<img src="<?php echo $mosConfig_live_site;>/templates/peeklime/images/ballonlime_04.gif" width="11" height="21" alt=""></td>
    		<td  height="21" align="left" bgcolor="#A7CF43"><?php mosLoadModules &#40; 'user1' &#41;; ></td>
    		<td background="<?php echo $mosConfig_live_site;>/templates/peeklime/images/ballonlime_06.gif">
    			<img src="<?php echo $mosConfig_live_site;>/templates/peeklime/images/ballonlime_06.gif" width="19" height="21" alt=""></td>
    	</tr>
    	<tr>
    		<td rowspan="2">
    			<img src="<?php echo $mosConfig_live_site;>/templates/peeklime/images/ballonlime_07.gif" width="11" height="30" alt=""></td>
    		<td rowspan="2" background="<?php echo $mosConfig_live_site;>/templates/peeklime/images/ballonlime_08.gif">
    			<img src="<?php echo $mosConfig_live_site;>/templates/peeklime/images/ballonlime_08.gif" width="24" height="30" alt=""></td>
    		<td>
    			<img src="<?php echo $mosConfig_live_site;>/templates/peeklime/images/ballonlime_09.gif" width="19" height="29" alt=""></td>
    	</tr>
    </table></td><?php &#125; >
              </tr>
            </table></td><?php &#125; >
            <td><table width="100%"  border="0" align="center" cellpadding="0" cellspacing="4">
              <tr><?php if &#40;mosCountModules&#40; "top" &#41;&#41; &#123; >
                <td align="center"><table width="100%"  border="0" cellpadding="0" cellspacing="0">
    	<tr>
    		<td width="11">
    			<img src="<?php echo $mosConfig_live_site;>/templates/peeklime/images/maingreen_01.gif" width="11" height="16" alt=""></td>
    		<td background="<?php echo $mosConfig_live_site;>/templates/peeklime/images/maingreen_02.gif">
    			<img src="<?php echo $mosConfig_live_site;>/templates/peeklime/images/maingreen_02.gif" width="24" height="16" alt=""></td>
    		<td width="19">
    			<img src="<?php echo $mosConfig_live_site;>/templates/peeklime/images/maingreen_03.gif" width="19" height="16" alt=""></td>
    	</tr>
    	<tr>
    		<td background="<?php echo $mosConfig_live_site;>/templates/peeklime/images/maingreen_04.gif">
    			<img src="<?php echo $mosConfig_live_site;>/templates/peeklime/images/maingreen_04.gif" width="11" height="21" alt=""></td>
    		<td align="left" valign="middle" bgcolor="#D3F5D0"><?php mosLoadModules &#40; 'top' &#41;; ></td>
    		<td background="<?php echo $mosConfig_live_site;>/templates/peeklime/images/maingreen_06.gif">
    			<img src="<?php echo $mosConfig_live_site;>/templates/peeklime/images/maingreen_06.gif" width="19" height="21" alt=""></td>
    	</tr>
    	<tr>
    		<td>
    			<img src="<?php echo $mosConfig_live_site;>/templates/peeklime/images/maingreen_07.gif" width="11" height="18" alt=""></td>
    		<td background="<?php echo $mosConfig_live_site;>/templates/peeklime/images/maingreen_08.gif">
    			<img src="<?php echo $mosConfig_live_site;>/templates/peeklime/images/maingreen_08.gif" width="24" height="18" alt=""></td>
    		<td>
    			<img src="<?php echo $mosConfig_live_site;>/templates/peeklime/images/maingreen_09.gif" width="19" height="18" alt=""></td>
    	</tr>
    </table></td><?php &#125; >
              </tr>
              <tr>
                <td align="center"><table width="100%"  border="0" cellpadding="0" cellspacing="0">
    	<tr>
    		<td width="11">
    			<img src="<?php echo $mosConfig_live_site;>/templates/peeklime/images/mainwhite_01.gif" width="11" height="16" alt=""></td>
    		<td background="<?php echo $mosConfig_live_site;>/templates/peeklime/images/mainwhite_02.gif">
    			<img src="<?php echo $mosConfig_live_site;>/templates/peeklime/images/mainwhite_02.gif" width="24" height="16" alt=""></td>
    		<td width="19">
    			<img src="<?php echo $mosConfig_live_site;>/templates/peeklime/images/mainwhite_03.gif" width="19" height="16" alt=""></td>
    	</tr>
    	<tr>
    		<td background="<?php echo $mosConfig_live_site;>/templates/peeklime/images/mainwhite_04.gif">
    			<img src="<?php echo $mosConfig_live_site;>/templates/peeklime/images/mainwhite_04.gif" width="11" height="21" alt=""></td>
    		<td align="center" bgcolor="#FFFFFF"><table width="100%"  border="0" cellspacing="0" cellpadding="0">
              <tr>
                <td align="right" valign="baseline"><img src="<?php echo $mosConfig_live_site;>/templates/peeklime/images/date.gif" width="15" height="15" align="absbottom" />&nbsp;<?php echo &#40;strftime &#40;_DATE_FORMAT_LC, time&#40;&#41;+&#40;$mosConfig_offset*60*60&#41;&#41;&#41;; ></td>
              </tr>
              <tr>
                <td align="center"><?php include_once &#40;"mainbody.php"&#41;; ></td>
              </tr>
            </table>
          </td>
    		<td background="<?php echo $mosConfig_live_site;>/templates/peeklime/images/mainwhite_06.gif">
    			<img src="<?php echo $mosConfig_live_site;>/templates/peeklime/images/mainwhite_06.gif" width="19" height="21" alt=""></td>
    	</tr>
    	<tr>
    		<td>
    			<img src="<?php echo $mosConfig_live_site;>/templates/peeklime/images/mainwhite_07.gif" width="11" height="18" alt=""></td>
    		<td background="<?php echo $mosConfig_live_site;>/templates/peeklime/images/mainwhite_08.gif">
    			<img src="<?php echo $mosConfig_live_site;>/templates/peeklime/images/mainwhite_08.gif" width="24" height="18" alt=""></td>
    		<td>
    			<img src="<?php echo $mosConfig_live_site;>/templates/peeklime/images/mainwhite_09.gif" width="19" height="18" alt=""></td>
    	</tr>
    </table></td>
              </tr>
            </table></td><?php if &#40;mosCountModules&#40; "right" &#41; + mosCountModules&#40; "user2" &#41; > 0&#41; &#123; >
            <td width="165" align="center"><table width="100%"  border="0" align="center" cellpadding="0" cellspacing="4">
              <tr><?php if &#40;mosCountModules&#40; "right" &#41;&#41; &#123; >
                <td align="center" valign="top"><table width="100%"  border="0" cellpadding="0" cellspacing="0">
    	<tr>
    		<td width="11">
    			<img src="<?php echo $mosConfig_live_site;>/templates/peeklime/images/ballongreen_01.gif" width="11" height="16" alt=""></td>
    		<td background="<?php echo $mosConfig_live_site;>/templates/peeklime/images/ballongreen_02.gif">
    			<img src="<?php echo $mosConfig_live_site;>/templates/peeklime/images/ballongreen_02.gif" width="24" height="16" alt=""></td>
    		<td width="19">
    			<img src="<?php echo $mosConfig_live_site;>/templates/peeklime/images/ballongreen_03.gif" width="19" height="16" alt=""></td>
    	</tr>
    	<tr>
    		<td background="<?php echo $mosConfig_live_site;>/templates/peeklime/images/ballongreen_04.gif">
    			<img src="<?php echo $mosConfig_live_site;>/templates/peeklime/images/ballongreen_04.gif" width="11" height="21" alt=""></td>
    		<td width="100%"  height="21" align="left" bgcolor="#D6E5AA"><?php mosLoadModules &#40; 'right' &#41;; ></td>
    		<td background="<?php echo $mosConfig_live_site;>/templates/peeklime/images/ballongreen_06.gif">
    			<img src="<?php echo $mosConfig_live_site;>/templates/peeklime/images/ballongreen_06.gif" width="19" height="21" alt=""></td>
    	</tr>
    	<tr>
    		<td rowspan="2">
    			<img src="<?php echo $mosConfig_live_site;>/templates/peeklime/images/ballongreen_07.gif" width="11" height="30" alt=""></td>
    		<td rowspan="2" background="<?php echo $mosConfig_live_site;>/templates/peeklime/images/ballongreen_08.gif">
    			<img src="<?php echo $mosConfig_live_site;>/templates/peeklime/images/ballongreen_08.gif" width="24" height="30" alt=""></td>
    		<td>
    			<img src="<?php echo $mosConfig_live_site;>/templates/peeklime/images/ballongreen_09.gif" width="19" height="29" alt=""></td>
    	</tr>
    </table></td><?php &#125; >
              </tr>
              <tr><?php if &#40;mosCountModules&#40; "user2" &#41;&#41; &#123; >
                <td align="center" valign="top"><table width="100%"  border="0" cellpadding="0" cellspacing="0">
    	<tr>
    		<td width="11">
    			<img src="<?php echo $mosConfig_live_site;>/templates/peeklime/images/ballonwhite_01.gif" width="11" height="16" alt=""></td>
    		<td background="<?php echo $mosConfig_live_site;>/templates/peeklime/images/ballonwhite_02.gif">
    			<img src="<?php echo $mosConfig_live_site;>/templates/peeklime/images/ballonwhite_02.gif" width="24" height="16" alt=""></td>
    		<td width="19">
    			<img src="<?php echo $mosConfig_live_site;>/templates/peeklime/images/ballonwhite_03.gif" width="19" height="16" alt=""></td>
    	</tr>
    	<tr>
    		<td background="<?php echo $mosConfig_live_site;>/templates/peeklime/images/ballonwhite_04.gif">
    			<img src="<?php echo $mosConfig_live_site;>/templates/peeklime/images/ballonwhite_04.gif" width="11" height="21" alt=""></td>
    		<td  height="21" align="left" bgcolor="#FFFFFF"><?php mosLoadModules &#40; 'user2' &#41;; ></td>
    		<td background="<?php echo $mosConfig_live_site;>/templates/peeklime/images/ballonwhite_06.gif">
    			<img src="<?php echo $mosConfig_live_site;>/templates/peeklime/images/ballonwhite_06.gif" width="19" height="21" alt=""></td>
    	</tr>
    	<tr>
    		<td rowspan="2">
    			<img src="<?php echo $mosConfig_live_site;>/templates/peeklime/images/ballonwhite_07.gif" width="11" height="30" alt=""></td>
    		<td rowspan="2" background="<?php echo $mosConfig_live_site;>/templates/peeklime/images/ballonwhite_08.gif">
    			<img src="<?php echo $mosConfig_live_site;>/templates/peeklime/images/ballonwhite_08.gif" width="24" height="30" alt=""></td>
    		<td>
    			<img src="<?php echo $mosConfig_live_site;>/templates/peeklime/images/ballonwhite_09.gif" width="19" height="29" alt=""></td>
    	</tr>
    </table></td><?php &#125; >
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
              </tr>
            </table></td>
          </tr>
        </table></td><?php &#125; >
      </tr>
      <tr><?php if &#40;mosCountModules&#40; "bottom" &#41;&#41; &#123; >
        <td align="center" valign="top"><table width="100%"  border="0" cellpadding="0" cellspacing="0">
    	<tr>
    		<td width="11">
    			<img src="<?php echo $mosConfig_live_site;>/templates/peeklime/images/maingrey_01.gif" width="11" height="16" alt=""></td>
    		<td background="<?php echo $mosConfig_live_site;>/templates/peeklime/images/maingrey_02.gif">
    			<img src="<?php echo $mosConfig_live_site;>/templates/peeklime/images/maingrey_02.gif" width="24" height="16" alt=""></td>
    		<td width="19">
    			<img src="<?php echo $mosConfig_live_site;>/templates/peeklime/images/maingrey_03.gif" width="19" height="16" alt=""></td>
    	</tr>
    	<tr>
    		<td background="<?php echo $mosConfig_live_site;>/templates/peeklime/images/maingrey_04.gif">
    			<img src="<?php echo $mosConfig_live_site;>/templates/peeklime/images/maingrey_04.gif" width="11" height="21" alt=""></td>
    		<td align="left" bgcolor="#CCCCCC"><?php mosLoadModules &#40; 'bottom' &#41;; >
          </td>
    		<td background="<?php echo $mosConfig_live_site;>/templates/peeklime/images/maingrey_06.gif">
    			<img src="<?php echo $mosConfig_live_site;>/templates/peeklime/images/maingrey_06.gif" width="19" height="21" alt=""></td>
    	</tr>
    	<tr>
    		<td>
    			<img src="<?php echo $mosConfig_live_site;>/templates/peeklime/images/maingrey_07.gif" width="11" height="18" alt=""></td>
    		<td background="<?php echo $mosConfig_live_site;>/templates/peeklime/images/maingrey_08.gif">
    			<img src="<?php echo $mosConfig_live_site;>/templates/peeklime/images/maingrey_08.gif" width="24" height="18" alt=""></td>
    		<td>
    			<img src="<?php echo $mosConfig_live_site;>/templates/peeklime/images/maingrey_09.gif" width="19" height="18" alt=""></td>
    	</tr>
    </table></td><?php &#125; >
      </tr>
      <tr>
        <td align="center" valign="top">&nbsp;</td>
      </tr>
    </table>
    </td>
    	</tr>
    	<tr>
    		<td height="21" align="center" background="<?php echo $mosConfig_live_site;>/templates/peeklime/images/PeekLime_12.gif"><span class="bar"><a href="<?php echo sefRelToAbs&#40;$_SERVER&#91;'REQUEST_URI'&#93;&#41;."#up"; >"><img src="<?php echo $mosConfig_live_site;>/templates/peeklime/images/top.gif" alt="Go to top of page" width="15" height="12" border="0" /></a>&nbsp;&nbsp;<?php echo $mymenu_content ></span> </td>
    	</tr>
    	<tr>
    		<td height="20" style="background-repeat&#58;repeat-x" background="<?php echo $mosConfig_live_site;>/templates/peeklime/images/PeekLime_18.gif"><div align="center"><a href="http&#58;//www.mamboserver.com" target="_blank"><img src="<?php echo $mosConfig_live_site;>/templates/peeklime/images/PeekLime_14.gif" alt="" width="196" height="20" border="0"></a>&nbsp;<a href="http&#58;//www.peekmambo.com" target="_blank"><img src="<?php echo $mosConfig_live_site;>/templates/peeklime/images/PeekLime_16.gif" alt="" width="206" height="20" border="0"></a></div></td>
    	</tr>
    	<tr align="center" valign="top">
    		<td><?php mosLoadModules &#40; 'inset' &#41;; ><br>
    </td>
      </tr>
    </table>
    </body>
    </html>
    mfg
    XiStEr

  4. #4
    Neu an Board
    Registriert seit
    04.02.2004
    Beiträge
    27
    Bedankte sich
    1
    Erhielt 0 Danksagungen
    in 0 Beiträgen

    Standard

    oki, funktioniert nun alles.

    vielen dank

  5. #5
    Neu an Board
    Registriert seit
    28.07.2004
    Beiträge
    4
    Bedankte sich
    0
    Erhielt 0 Danksagungen
    in 0 Beiträgen

    Standard

    Nur mal so ne frage am rande, wie war den jetzt die antwort auf die frage?
    Weil is das nämlich gut anhört.
    Sowas könnte ich auch gebrauchen :wink:

+ Antworten

Ähnliche Themen

  1. Kann Module nicht installieren - Absoluter NEULING
    Von BastiKraemer im Forum Mambo 4.5.0 Module
    Antworten: 2
    Letzter Beitrag: 18.08.2004, 13:59
  2. Kann keine Module Installieren ?
    Von Rascal im Forum Mambo 4.5.0 Module
    Antworten: 3
    Letzter Beitrag: 22.07.2004, 15:18
  3. Eine Frage: Neue Box in der Content ist???
    Von Thunder im Forum Allgemeine Fragen zu Mambo 4.5.0
    Antworten: 5
    Letzter Beitrag: 09.02.2004, 13:30
  4. Position TOP/Left/Right/ect..., 2 Module nebeneinander
    Von Aydrian im Forum Allgemeine Fragen zu Mambo 4.5.0
    Antworten: 1
    Letzter Beitrag: 30.12.2003, 08:46
  5. Module auf unterschiedlichen Pages ??
    Von Anonymous im Forum Allgemeine Fragen zu Mambo 4.5.0
    Antworten: 3
    Letzter Beitrag: 14.11.2003, 21:04

Lesezeichen

Berechtigungen

  • Neue Themen erstellen: Nein
  • Themen beantworten: Nein
  • Anhänge hochladen: Nein
  • Beiträge bearbeiten: Nein