ilch Forum » Ilch Clan 1.1 » Fehlersuche und Probleme » Ganzer indexbereich

Geschlossen
  1. #1
    User Pic
    Botox84 Mitglied
    Registriert seit
    09.08.2006
    Beiträge
    1.190
    Beitragswertungen
    21 Beitragspunkte
    Hallo, ich wollte mal fragen wie ich es definieren kann, das die seite nach unten nicht immer länger wird, so das sie quasie eine feste position hat...meinetwegen 2000 und da fest stehen bleibt...

    Achso, hier mal die index.

    <html>
    <head>
    <meta http-equiv="Content-Language" content="de">
    <meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
    <!-- Head & Title include -->
    <title>{TITLE} // Clanpage by zurro-gaming.de</title>
    <link rel="stylesheet" type="text/css" href="include/designs/design_62/style.css">
    <link href="_stylesheet.css" rel="stylesheet" type="text/css">
    <script src="js/bbcode.js" language="jscript" type="text/javascript"></script>
    <!-- end Head & Title include -->
    
    <!-- standard Design stylesheet -->
    <style type="text/css">
    body {
    	margin-left: 0px;
    	margin-top: 3px;
    	margin-right: 0px;
    	margin-bottom: 0px;
    	background-color: #3A3839
    }
    .head {font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 20px; }
    .head2 {font-size: 10px; color: #6DC903; font-weight: bold; }
    </style>
    <!-- end standard Design stylesheet -->
    <style type="text/css">
    
    #dropmenudiv{
    border-left:0px none; border-right:0px none; border-top:0px none; border-bottom:0px none; position:absolute;
    line-height:18px;
    z-index:100; font-style:normal; font-variant:normal; font-weight:normal; font-size:12px; font-family:Verdana
    }
    
    #dropmenudiv a{
    width: 100%;
    display: block;
    text-indent: 3px;
    border-bottom: 1px solid black;
    padding: 1px 0;
    text-decoration: none;
    font-weight: bold;
    background:#000000;
    }
    
    #dropmenudiv a:hover{ /*hover background color*/
    background-color: write;
    }
    
    </style>
    
    <script type="text/javascript">
    
    /***********************************************
    * AnyLink Drop Down Menu- © Dynamic Drive (www.dynamicdrive.com)
    * This notice MUST stay intact for legal use
    * Visit http://www.dynamicdrive.com/ for full source code
    ***********************************************/
    
    //Contents for menu 1
    var menu1=new Array()
    menu1[3]='<a href="?user">Mitglieder</a>'
    menu1[4]='<a href="?rules">AGB</a>'
    
    //Contents for menu 2, and so on
    var menu2=new Array()
    menu2[0]='<a href="?news">News</a>'
    menu2[1]='<a href="?vote">Umfragen</a>'
    menu2[2]='<a href="?gbook">Gästebuch</a>'
    menu2[3]='<a href="?downloads">Downloads</a>'
    
    //Contents for menu 3, and so on
    var menu3=new Array()
    menu3[0]='<a href="?forum">Forum</a>'
    menu3[1]='<a href="?gallery">Gallery</a>'
    menu3[3]='<a href="?links">Links</a>'
    menu3[4]='<a href="?contact">Kontakt</a>'
    menu3[5]='<a href="?impressum">Impressum</a>'
    
    		
    var menuwidth='121px' //default menu width
    var menubgcolor='write'  //menu bgcolor
    var disappeardelay=250  //menu disappear speed onMouseout (in miliseconds)
    var hidemenu_onclick="yes" //hide menu when user clicks within menu?
    
    /////No further editting needed
    
    var ie4=document.all
    var ns6=document.getElementById&&!document.all
    
    if (ie4||ns6)
    document.write('<div id="dropmenudiv" style="visibility:hidden;width:'+menuwidth+';background-color:'+menubgcolor+'" onMouseover="clearhidemenu()" onMouseout="dynamichide(event)"></div>')
    
    function getposOffset(what, offsettype){
    var totaloffset=(offsettype=="left")? what.offsetLeft : what.offsetTop;
    var parentEl=what.offsetParent;
    while (parentEl!=null){
    totaloffset=(offsettype=="left")? totaloffset+parentEl.offsetLeft : totaloffset+parentEl.offsetTop;
    parentEl=parentEl.offsetParent;
    }
    return totaloffset;
    }
    
    
    function showhide(obj, e, visible, hidden, menuwidth){
    if (ie4||ns6)
    dropmenuobj.style.left=dropmenuobj.style.top="-500px"
    if (menuwidth!=""){
    dropmenuobj.widthobj=dropmenuobj.style
    dropmenuobj.widthobj.width=menuwidth
    }
    if (e.type=="click" && obj.visibility==hidden || e.type=="mouseover")
    obj.visibility=visible
    else if (e.type=="click")
    obj.visibility=hidden
    }
    
    function iecompattest(){
    return (document.compatMode && document.compatMode!="BackCompat")? document.documentElement : document.body
    }
    
    function clearbrowseredge(obj, whichedge){
    var edgeoffset=0
    if (whichedge=="rightedge"){
    var windowedge=ie4 && !window.opera? iecompattest().scrollLeft+iecompattest().clientWidth-15 : window.pageXOffset+window.innerWidth-15
    dropmenuobj.contentmeasure=dropmenuobj.offsetWidth
    if (windowedge-dropmenuobj.x < dropmenuobj.contentmeasure)
    edgeoffset=dropmenuobj.contentmeasure-obj.offsetWidth
    }
    else{
    var topedge=ie4 && !window.opera? iecompattest().scrollTop : window.pageYOffset
    var windowedge=ie4 && !window.opera? iecompattest().scrollTop+iecompattest().clientHeight-15 : window.pageYOffset+window.innerHeight-18
    dropmenuobj.contentmeasure=dropmenuobj.offsetHeight
    if (windowedge-dropmenuobj.y < dropmenuobj.contentmeasure){ //move up?
    edgeoffset=dropmenuobj.contentmeasure+obj.offsetHeight
    if ((dropmenuobj.y-topedge)<dropmenuobj.contentmeasure) //up no good either?
    edgeoffset=dropmenuobj.y+obj.offsetHeight-topedge
    }
    }
    return edgeoffset
    }
    
    function populatemenu(what){
    if (ie4||ns6)
    dropmenuobj.innerHTML=what.join("")
    }
    
    
    function dropdownmenu(obj, e, menucontents, menuwidth){
    if (window.event) event.cancelBubble=true
    else if (e.stopPropagation) e.stopPropagation()
    clearhidemenu()
    dropmenuobj=document.getElementById? document.getElementById("dropmenudiv") : dropmenudiv
    populatemenu(menucontents)
    
    if (ie4||ns6){
    showhide(dropmenuobj.style, e, "visible", "hidden", menuwidth)
    
    dropmenuobj.x=getposOffset(obj, "left")
    dropmenuobj.y=getposOffset(obj, "top")
    dropmenuobj.style.left=dropmenuobj.x-clearbrowseredge(obj, "rightedge")+"px"
    dropmenuobj.style.top=dropmenuobj.y-clearbrowseredge(obj, "bottomedge")+obj.offsetHeight+"px"
    }
    
    return clickreturnvalue()
    }
    
    function clickreturnvalue(){
    if (ie4||ns6) return false
    else return true
    }
    
    function contains_ns6(a, b) {
    while (b.parentNode)
    if ((b = b.parentNode) == a)
    return true;
    return false;
    }
    
    function dynamichide(e){
    if (ie4&&!dropmenuobj.contains(e.toElement))
    delayhidemenu()
    else if (ns6&&e.currentTarget!= e.relatedTarget&& !contains_ns6(e.currentTarget, e.relatedTarget))
    delayhidemenu()
    }
    
    function hidemenu(e){
    if (typeof dropmenuobj!="undefined"){
    if (ie4||ns6)
    dropmenuobj.style.visibility="hidden"
    }
    }
    
    function delayhidemenu(){
    if (ie4||ns6)
    delayhide=setTimeout("hidemenu()",disappeardelay)
    }
    
    function clearhidemenu(){
    if (typeof delayhide!="undefined")
    clearTimeout(delayhide)
    }
    
    if (hidemenu_onclick=="yes")
    document.onclick=hidemenu
    
    </script>
    </head>
    
    <body>
    <center>
      <table width="1024" border="0" cellspacing="0" cellpadding="0">
        <tr>
          <td><table width="1024" border="0" cellspacing="0" cellpadding="0">
            <tr>
              <td valign="top"><img src="include/designs/design_62/img/header1.jpg" width="356" height="216" /></td>
              <td valign="top"><table width="368" border="0" cellspacing="0" cellpadding="0">
                <tr>
                  <td><table width="368" border="0" cellspacing="0" cellpadding="0">
                    <tr>
                      <td><a href="#" onClick="return clickreturnvalue()" onMouseover="dropdownmenu(this, event, menu1, '122px')" onMouseout="delayhidemenu()"><img src="include/designs/design_62/img/clan.jpg" name="image1" width="122" height="25" border="0"></a></td>
                      <td><a href="#" onClick="return clickreturnvalue()" onMouseover="dropdownmenu(this, event, menu2, '123px')" onMouseout="delayhidemenu()"><img src="include/designs/design_62/img/community.jpg" name="image2" width="123" height="25" border="0"></a></td>
                      <td><a href="#" onClick="return clickreturnvalue()" onMouseover="dropdownmenu(this, event, menu3, '123px')" onMouseout="delayhidemenu()"><img src="include/designs/design_62/img/contact.jpg" name="image3" width="123" height="25" border="0"></a></td>
                    </tr>
                  </table></td>
                </tr>
                <tr>
                  <td><img src="include/designs/design_62/img/header2.jpg" width="368" height="191" /></td>
                </tr>
              </table></td>
              <td valign="top"><a href="?user-regist"><img src="include/designs/design_62/img/register.jpg" width="300" height="216" border="0"/></a></td>
            </tr>
          </table></td>
        </tr>
        <tr>
          <td>
    <a target="_blank" href="http://www.zurro-gaming.de" title="Webspell Templates">
    <img border="0" src="include/designs/design_62/img/under_header.jpg" width="1024" height="14" /></a></td>
        </tr>
        <tr>
          <td background="include/designs/design_62/images/bg_squads.jpg"><table width="1024" border="0" cellspacing="0" cellpadding="0">
            <tr>
              <td width="71" background="include/designs/design_62/img/bg.jpg"><img src="include/designs/design_62/img/squads.jpg" width="71" height="67" /></td>
              <td width="72"><img src="include/designs/design_62/img/cs.jpg" width="72" height="67" /></td>
              <td width="74"><img src="include/designs/design_62/img/img_10.jpg" width="74" height="67" /></td>
              <td width="72"><img src="include/designs/design_62/img/css.jpg" width="72" height="67" /></td>
              <td width="72"><img src="include/designs/design_62/img/fifa.jpg" width="72" height="67" /></td>
              <td width="74"><img src="include/designs/design_62/img/cod.jpg" width="74" height="67" /></td>
              <td width="69"><img src="include/designs/design_62/img/img_14.jpg" width="69" height="67" /></td>
              <td width="263"><table width="263" border="0" cellspacing="0" cellpadding="0">
                  <tr>
                    <td width="10">&nbsp;</td>
                    <td width="249"><script type="text/javascript"><!--
    google_ad_client = "pub-8109272597676827";
    google_ad_width = 234;
    google_ad_height = 60;
    google_ad_format = "234x60_as";
    google_ad_type = "text";
    //2007-08-31: zgfx DESGIN 62
    google_ad_channel = "1206228937";
    google_color_border = "0B0B0B";
    google_color_bg = "0B0B0B";
    google_color_link = "3D81EE";
    google_color_text = "000000";
    google_color_url = "000000";
    google_ui_features = "rc:10";
    //-->
                    </script>
                        <script type="text/javascript"
      src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
                    </script></td>
                    <td width="10">&nbsp;</td>
                  </tr>
              </table></td>
              <td width="233" height="67">{_boxes_login}</td>
              <td width="24">&nbsp;</td>
            </tr>
          </table></td>
        </tr>
        <tr>
          <td><img src="include/designs/design_62/img/under_squads.jpg" width="1024" height="12" /></td>
        </tr>
        <tr>
          <td><table width="1024" border="0" cellspacing="0" cellpadding="0">
            <tr>
              <td valign="top"><table width="634" border="0" cellspacing="0" cellpadding="0">
                <tr>
                  <td><img src="include/designs/design_62/img/boxen_mid.jpg" width="634" height="17" /></td>
                </tr>
                <tr>
                  <td><table width="634" border="0" cellspacing="0" cellpadding="0">
                    <tr>
                      <td valign="top" background="include/designs/design_62/img/box1.jpg" width="232" height="92" ><table width="232" border="0" cellspacing="0" cellpadding="0">
                     </table></td>
                      <td valign="top" background="include/designs/design_62/img/box2.jpg" width="203" height="92" ><table width="203" border="0" cellspacing="0" cellpadding="0">
                        <tr>
                          <td width="10">&nbsp;</td>
                          <td width="189">{_boxes_lastwars}</td>
                          <td width="10">&nbsp;</td>
                        </tr>
                      </table></td>
                      <td valign="top" background="include/designs/design_62/img/box3.jpg" width="199" height="92"><table width="199" border="0" cellspacing="0" cellpadding="0">
                        <tr>
                        </tr>
                      </table></td>
                    </tr>
                  </table></td>
                </tr>
              </table></td>
              <td background="include/designs/design_62/img/special.jpg" width="390" height="109"><table width="390" border="0" cellspacing="0" cellpadding="0">
                <tr>
                  <td width="367"></td>
                  <td width="23" >&nbsp;</td>
                </tr>
              </table></td>
            </tr>
          </table></td>
        </tr>
        <tr>
          <td><img src="include/designs/design_62/img/under_boxen.jpg" width="1024" height="11" /></td>
        </tr>
        <tr>
          <td background="include/designs/design_62/img/bg.jpg"><table width="1024" border="0" cellspacing="0" cellpadding="0">
            <tr>
              <td valign="top"><table width="630" border="0" cellspacing="0" cellpadding="0">
                <tr>
                  <td width="39">&nbsp;</td>
                  <td width="594"><b>»</b>{HMENU}<br>{EXPLODE}
          </td>
                  <td width="4">&nbsp;</td>
                </tr>
              </table></td>          
              
              <td valign="top"><table width="184" border="0" cellspacing="0" cellpadding="0">
                            
                  </td>
                </tr>
                <tr>
                  <td width="184" height="20">
                   <font color="#FFFFFF">{_list_menunr1@ </font>    
                     <table width="184" border="0" cellspacing="0" cellpadding="0" background="include/designs/design_62/img/navi_r.jpg" height="20">
                  	<tr>
                    <td width="10">&nbsp;</td>
                    <td width="112"><b><font face="Tahoma" size="2" color="#ffffff">%1</font></b>
                    </td>
                    <td width="62">&nbsp;</td>
                  	</tr>
                  </table> 
                          
               	  <table width="184" border="0" cellspacing="0" cellpadding="0" background="http://85.14.216.248/Webseitenbauen/Banner/Button.jpg" height="10">
                    <tr>
                      <td width="10">&nbsp;</td>
                      <td width="170"><font face="Tahoma" size="3" color="#ffffff">%2</font></td>
                      <td width="10">&nbsp;</td>
                    </tr>
                  </table>
                  }
                  <font color="#FFFFFF">{_list_menunr2@ </font>    
                  <table width="184" border="0" cellspacing="0" cellpadding="0" background="include/designs/design_62/img/navi_r.jpg" height="20">
                  	<tr>
                    <td width="10">&nbsp;</td>
                    <td width="112"><b><font face="Tahoma" size="2" color="#ffffff">%1</font></b>
                    </td>
                    <td width="62">&nbsp;</td>
                  	</tr>
                  </table> 
                          
               	  <table width="184" border="0" cellspacing="0" cellpadding="0">
                    <tr>
                      <td width="10">&nbsp;</td>
                      <td width="170"><font face="Tahoma" size="2" color="#ffffff">%2</font></td>
                      <td width="10">&nbsp;</td>
                    </tr>
                  </table>
                  }
    		 </td>
                  </tr>
                </table>
                </td>
              <td valign="top"><table width="203" border="0" cellspacing="0" cellpadding="0">
                <tr>
                  <td background="include/designs/design_62/img/navi_l.jpg" width="203" height="20"><table width="203" border="0" cellspacing="0" cellpadding="0">
                    <tr>
                      <td width="12">&nbsp;</td>
                      <td width="112"><font color="#FFFFFF" face="Tahoma" style="font-size:11px; font-weight:bold">Page-Sponsor</font></td>
                      <td width="79">&nbsp;</td>
                    </tr>
                  </table></td>
                </tr>
                <tr>
                  <td>
                  <a target="_blank" href="http://www.zurro-gaming.de/template-Sponsoren/sponsor_2.html">
                  <img border="0" src="http://www.zurro-gaming.de/template-Sponsoren/d62/sponsor1.jpg" width="181" height="47" /></a></td>
                </tr>
                <tr>
                  <td>
    
                <font color="#FFFFFF">{_list_menunr4@ </font>    
                  <table width="203" border="0" cellspacing="0" cellpadding="0" background="include/designs/design_62/img/navi_l.jpg" height="20">
                    <tr>
                      <td width="12">&nbsp;</td>
                      <td width="112"><b><font face="Tahoma" size="2" color="#ffffff">%1</font></b> </td>
                      <td width="79">&nbsp;</td>
                    </tr>
                  </table><table width="203" border="0" cellspacing="0" cellpadding="0">
                    <tr>
                      <td width="10">&nbsp;</td>
                      <td width="167"><font face="Tahoma" size="2" color="#ffffff">%2</font></td>
                      <td width="26">&nbsp;</td>
                    </tr>
                  </table>
                  }
                  <br>
                  &nbsp;</td>
                </tr>
                <tr>
                  <td><center><script language='JavaScript' type='text/javascript' src='http://www.esport-ads.de/ads/adx.js'></script>
    
                          <script language='JavaScript' type='text/javascript'>
    <!--
       if (!document.phpAds_used) document.phpAds_used = ',';
       phpAds_random = new String (Math.random()); phpAds_random = phpAds_random.substring(2,11);
       
       document.write ("<" + "script language='JavaScript' type='text/javascript' src='");
       document.write ("http://www.esport-ads.de/ads/adjs.php?n=" + phpAds_random);
       document.write ("&amp;what=zone:3&amp;target=_blank");
       document.write ("&amp;exclude=" + document.phpAds_used);
       if (document.referrer)
          document.write ("&amp;referer=" + escape(document.referrer));
       document.write ("'><" + "/script>");
    //-->
                  </script>
                    <noscript>
                      <a href='http://www.esport-ads.de/ads/adclick.php?n=a624a57c' target='_blank'><img src='http://www.esport-ads.de/ads/adview.php?what=zone:3&amp;n=a624a57c' border='0' alt='' /></a></noscript></center></td>
                </tr>
              </table></td>
            </tr>
          </table></td>
        </tr>
      </table>
      <p><font color="#3A3839"><a target="_blank" title="kostenlose Clandesigns" href="">
      <font color="#3A3839">&nbsp; </font></a></font></p>
      <p>
        <script src="http://layer-ads.de/la-42048.js" type="text/javascript"></script>
        </p>
    </center>
    
    <map name="Map" id="Map">
    <area shape="rect" coords="116,28,263,66" href="index.php?site=register" />
    <area href="?user-regist" shape="default">
    <area href="?user-regist" coords="0, 0, 10000, 10000" shape="rect">
    </map></body>
    </html>
    <!-- {_list_DDDmenupoint@<strong><big>&middot;</big></strong><a %1 class="box" href="%2">%3</a><br />}//-->
    {_list_hmenupoint@<li><a target="%1" class="box" href="%2">%3</a>|</li>|<br />|</ul></li>}
    {_list_hmenubegi@<ul>}
    {_list_hmenuende@</ul>}
    {_list_vmenupoint@<li><a target="%1" class="box" href="%2">%3</a>|</li>|<br /><ul>|</ul></li>}
    {_list_vmenubegi@<ul>}
    {_list_vmenuende@</ul>}



    PS: ich habe folgendes problem, hinter dem menü 1 is nen grauer streifen, nicht zu sehen wenn ich nur das menü 1 nutze, wenn ich dan aber menü 4 benutze um da werbung etz rein zu setzen, verlängert sich die seite um die höhe des werbebanner etz.
    und dann ist der graue streifen zu sehen.
    die seite verlängert sich also um so weit wie ich das menü 4 verlängere und unter menü 1 ist dann halt der abstand zu sehen(wie lang das menü 1 ist)...
    hoffe ich konnte es euch anständig erklären.
    PS: menü 1 und Menü4 sind neben einander

    lg Botox84


    Zuletzt modifiziert von Mairu am 04.11.2007 - 14:20:56
    0 Mitglieder finden den Beitrag gut.
  2. #2
    User Pic
    Botox84 Mitglied
    Registriert seit
    09.08.2006
    Beiträge
    1.190
    Beitragswertungen
    21 Beitragspunkte
    Vielen Dank an Sebi(Mairu), er hat mir mal wieder eins geholfen und mein Problem in den Griff bekommen ;-P


    Zuletzt modifiziert von Botox84 am 04.11.2007 - 21:27:54
    0 Mitglieder finden den Beitrag gut.
Geschlossen

Zurück zu Fehlersuche und Probleme

Optionen: Bei einer Antwort zu diesem Thema eine eMail erhalten