ilch Forum » Ilch Clan 1.1 » Design und Templates » Hilfe mit Design

Geschlossen
  1. #1
    User Pic
    elementz Mitglied
    Registriert seit
    19.11.2007
    Beiträge
    69
    Beitragswertungen
    0 Beitragspunkte
    Hey,

    ich benötige wieder eure Hilfe glücklich

    Ich hab jetz ein neues Desgin auf der Page.

    Jetz würd ich gern: Den weißen Hintergrund bei den News weghaben.

    Die Google Box Weg haben.

    Unterm Header das Menü weghaben, und statdessen sollen dort wieder die Banner von Rechts nach Links wieder laufen glücklich wie beim letzen Design...

    Und dadrunter noch diese Werbung. Und statt dessen vlt ein Banner rein tuhen der sich beim jeden Seiten aufruf ändert.

    Ich glaub es ist nicht verboten die Werbung auf der Page zu entfernen. Ich hoffe ich liege Richtig. Weil in der Readme nur was mit dem Copyright stand....

    mfg

    elementz


    verwendete ilchClan Version: 1.1

    betroffene Homepage: externer Link


    Zuletzt modifiziert von elementz am 23.03.2008 - 14:25:15
    Die Welt ist eine Bühne ! Und wir die Puppen die Unterhalten werden !!!
    0 Mitglieder finden den Beitrag gut.
  2. #2
    User Pic
    elementz Mitglied
    Registriert seit
    19.11.2007
    Beiträge
    69
    Beitragswertungen
    0 Beitragspunkte
    Ok das meiste hab ich wohl selbst hinbekommen ^^

    Nur das mit dem Banner versteh ich net so ganz. Und die Werbung unterm Header und die Google Box wollen einfach net verschwinden -.-


    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    <!-- Head & Title include -->
    <title>{TITLE} // Clanpage by zurro-gaming.de</title>
    <link rel="stylesheet" type="text/css" href="include/designs/design_57-silber/style.css">
    <!-- end Head & Title include -->
    
    <!-- standard Design stylesheet -->
    <style type="text/css">
    body {
    	margin:0px; background-image: url('include/designs/design_57-silber/images/bg.gif');
    	
    }
    .head {font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 20px; }
    .head2 {font-size: 10px; color: #6DC903; font-weight: bold; }
    
    #dropmenudiv{
    border-left:1px solid black; border-right:1px solid black; border-top:1px solid black; border-bottom:0px solid black; position:absolute;
    line-height:18px;
    z-index:100; font-style:normal; font-variant:normal; font-weight:normal; font-size:11px; font-family:Verdana
    }
    
    #dropmenudiv a{
    width: 100%;
    display: block;
    text-indent: 2px;
    border-bottom: 1px solid black;
    padding: 1px 0;
    text-decoration: none;
    font-weight: bold;
    }
    
    #dropmenudiv a:hover{ /*hover background color*/
    background-color: white;
    }
    
    </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
    ***********************************************/
    
    
    
    /////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="974" border="0" cellspacing="0" cellpadding="0">
      <tr>
        <td><table width="974" border="0" cellspacing="0" cellpadding="0">
          <tr>
            <td width="182" height="24" align="left" valign="top" background="include/designs/design_57-silber/Bilder/bg_farbe_links.jpg"><table width="182" border="0" cellspacing="0" cellpadding="0">
              <tr>
                <td background="include/designs/design_57-silber/Bilder/nav_linksi.jpg" width="182" height="21"><table width="100%" border="0" cellspacing="1" cellpadding="0">
                  <tr>
                    <td width="7%">&nbsp;</td>
                    <td width="62%" valign="middle"><font color="#999999" style="font-family:Tahoma; font-size:12px ; font-weight:bold">MP3-Player</font></td>
                    <td width="31%">&nbsp;</td>
                  </tr>
                </table></td>
              </tr>
              <tr>
                <td align="center">
    <center>
    <style type="text/css">table.lfmWidgetfe5f932d920e6cbcf91ff7a5216bd9f0 td {margin:0 !important;padding:0 !important;border:0 !important;}table.lfmWidgetfe5f932d920e6cbcf91ff7a5216bd9f0 tr.lfmHead a:hover {background:url(http://cdn.last.fm/widgets/images/de/header/radio/regular_black.png) no-repeat 0 0 !important;}table.lfmWidgetfe5f932d920e6cbcf91ff7a5216bd9f0 tr.lfmEmbed object {float:left;}table.lfmWidgetfe5f932d920e6cbcf91ff7a5216bd9f0 tr.lfmFoot td.lfmConfig a:hover {background:url(http://cdn.last.fm/widgets/images/de/footer/black.png) no-repeat 0px 0 !important;;}table.lfmWidgetfe5f932d920e6cbcf91ff7a5216bd9f0 tr.lfmFoot td.lfmView a:hover {background:url(http://cdn.last.fm/widgets/images/de/footer/black.png) no-repeat -85px 0 !important;}table.lfmWidgetfe5f932d920e6cbcf91ff7a5216bd9f0 tr.lfmFoot td.lfmPopup a:hover {background:url(http://cdn.last.fm/widgets/images/de/footer/black.png) no-repeat -159px 0 !important;}</style>
    <table class="lfmWidgetfe5f932d920e6cbcf91ff7a5216bd9f0" cellpadding="0" cellspacing="0" border="0" style="width:184px;"><tr class="lfmHead"><td><a title="LTCSTEELEs Playlist" href="http://www.lastfm.de/listen/user/LTCSTEELE/playlist" target="_blank" style="display:block;overflow:hidden;height:20px;width:184px;background:url(http://cdn.last.fm/widgets/images/de/header/radio/regular_black.png) no-repeat 0 -20px;text-decoration:none;border:0;"></a></td></tr><tr class="lfmEmbed"><td><object type="application/x-shockwave-flash" data="http://cdn.last.fm/widgets/radio/22.swf" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0" width="184" height="140" > <param name="movie" value="http://cdn.last.fm/widgets/radio/22.swf" /> <param name="flashvars" value="lfmMode=radio&amp;radioURL=user%2FLTCSTEELE%2Fplaylist&amp;title=LTCSTEELEs+Playlist&amp;theme=black&amp;autostart=1&amp;lang=de&amp;widget_id=fe5f932d920e6cbcf91ff7a5216bd9f0" /> <param name="bgcolor" value="000000" /> <param name="quality" value="high" /> <param name="allowScriptAccess" value="always" /> <param name="allowNetworking" value="all" /> </object></td></tr><tr class="lfmFoot"><td style="background:url(http://cdn.last.fm/widgets/images/footer_bg/black.png) repeat-x 0 0;text-align:right;"><table cellspacing="0" cellpadding="0" border="0" style="width:184px;"><tr><td class="lfmConfig"><a href="http://www.lastfm.de/widgets/?url=user%2FLTCSTEELE%2Fplaylist&amp;colour=black&amp;size=regular&amp;autostart=1&amp;from=code&amp;widget=radio" title="Hol dir dein eigenes Widget" target="_blank" style="display:block;overflow:hidden;width:85px;height:20px;float:right;background:url(http://cdn.last.fm/widgets/images/de/footer/black.png) no-repeat 0px -20px;text-decoration:none;border:0;"></a></td><td class="lfmView" style="width:74px;"><a href="http://www.lastfm.de/user/LTCSTEELE/" title="Besuche LTCSTEELEs Profil" target="_blank" style="display:block;overflow:hidden;width:74px;height:20px;background:url(http://cdn.last.fm/widgets/images/de/footer/black.png) no-repeat -85px -20px;text-decoration:none;border:0;"></a></td><td class="lfmPopup"style="width:25px;"><a href="http://www.lastfm.de/widgets/popup/?url=user%2FLTCSTEELE%2Fplaylist&amp;colour=black&amp;size=regular&amp;autostart=1&amp;from=code&amp;widget=radio&amp;resize=1" title="Lade dieses Widget in einem Popup" target="_blank" style="display:block;overflow:hidden;width:25px;height:20px;background:url(http://cdn.last.fm/widgets/images/de/footer/black.png) no-repeat -159px -20px;text-decoration:none;border:0;" onclick="window.open(this.href + '&amp;resize=0','lfm_popup','height=240,width=234,resizable=yes,scrollbars=yes'); return false;"></a></td></tr></table></td></tr></table>
    
    </center>
              
              <tr>
                <td background="include/designs/design_57-silber/Bilder/nav_linksi.jpg" width="182" height="21"><table width="100%" border="0" cellspacing="1" cellpadding="0">
                  <tr>
                    <td width="7%">&nbsp;</td>
                    
    
    
                    <td width="31%">&nbsp;</td>
                  </tr>
                </table></td>
              </tr>
              <tr>
                <td background="include/designs/design_57-silber/Bilder/bg_links.jpg"><table width="182" height="100%" border="0" cellpadding="0" cellspacing="1">
                  <tr>
                    <td width="12">&nbsp;</td>
                    <td width="163"><script type="text/javascript"><!--
    google_ad_client = "pub-8109272597676827";
    google_ad_width = 120;
    google_ad_height = 240;
    google_ad_format = "120x240_as";
    google_ad_type = "text";
    //2007-05-19: zgfx DESIGN 57
    google_ad_channel = "5877291658";
    google_color_border = "191919";
    google_color_bg = "191919";
    google_color_link = "66B5FF";
    google_color_text = "969696";
    google_color_url = "969696";
    //-->
                    </script>
    <script type="text/javascript"
      src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
                    </script></td>
                    <td width="12">&nbsp;</td>
                  </tr>
                </table></td>
              </tr>
              
              <tr>
                <td><br>
                    {_list_menunr1@ 
                    <table width="100%" border="0" cellspacing="1" cellpadding="0">
              		<tr>
                	<td background="include/designs/design_57-silber/Bilder/nav_linksi.jpg" width="182" height="21">
                		<table width="100%" border="0" cellspacing="1" cellpadding="0">
                  		<tr>
                    	<td width="7%">&nbsp;</td>
                    	<td width="62%" valign="middle"><font color="#999999" style="font-family:Tahoma; font-size:12px ; font-weight:bold">%1</font></td>
                    	<td width="31%">&nbsp;</td>
                  		</tr>
                		</table>
                	</td>
              		</tr>
                    </table>
                    
                    </td>
                  	</tr>
                  	<tr>
                    <td valign="top" align="left" background="include/designs/design_57-silber/Bilder/box_rechts.jpg" width="182" height="109"><table width="182" border="0" cellspacing="0" cellpadding="0">
                      <tr>
                        <td width="10">&nbsp;</td>
                        <td width="168">%2</td>
                        <td width="10">&nbsp;</td>
                      </tr>
                    </table>
                    }
    <br>
                    {_list_menunr2@ 
                    <table width="100%" border="0" cellspacing="1" cellpadding="0">
              		<tr>
                	<td background="include/designs/design_57-silber/Bilder/nav_linksi.jpg" width="182" height="21">
                		<table width="100%" border="0" cellspacing="1" cellpadding="0">
                  		<tr>
                    	<td width="7%">&nbsp;</td>
                    	<td width="62%" valign="middle"><font color="#999999" style="font-family:Tahoma; font-size:12px ; font-weight:bold">%1</font></td>
                    	<td width="31%">&nbsp;</td>
                  		</tr>
                		</table>
                	</td>
              		</tr>
                    </table>
                    
                    </td>
                  	</tr>
                  	<tr>
                    <td valign="top" align="left" background="include/designs/design_57-silber/Bilder/box_rechts.jpg" width="182" height="109"><table width="182" border="0" cellspacing="0" cellpadding="0">
                      <tr>
                        <td width="10">&nbsp;</td>
                        <td width="168">%2</td>
                        <td width="10">&nbsp;</td>
                      </tr>
                    </table>
                    }
    
                                
              <img src="include/designs/design_57-silber/Bilder/under_box_links.jpg" width="182" height="93"></td>
              </tr>
            </table></td>
            <td width="610" height="27" align="left" valign="top" background="include/designs/design_57-silber/images/content_66.jpg"><table width="610" border="0" cellspacing="0" cellpadding="0">
              <tr>
                <td><table width="610" border="0" cellspacing="0" cellpadding="0">
                  <tr>
                    <td><img src="include/designs/design_57-silber/Bilder/header.jpg" width="610" height="185"></td>
                  </tr>
                  <tr>
            
    
    
                  </tr>
                  <tr>
                    <td><table width="610" border="0" cellspacing="0" cellpadding="0">
                      <tr>
    
    
    
                      </tr>
                    </table></td>
                  </tr>
    			  			  			  <tr>
    			  <td>&nbsp;</td>
    			  </tr>
                  <tr>
                    <td align="center" valign="middle"><script type="text/javascript"><!--
    
    
    
    
    
    
    
    //-->
    
    
    
                    </script>
    <script type="text/javascript"
      src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
                    </script></td>
                  </tr>
                  <tr>
                    <td><img src="include/designs/design_57-silber/Bilder/boxen_mitte.jpg" width="610" height="21"></td>
                  </tr>
                  <tr>
                    <td><table width="610" border="0" cellspacing="0" cellpadding="0">
                      <tr>
                        <td valign="top" background="include/designs/design_57-silber/Bilder/news_box.jpg" width="204" height="91"><table width="204" border="0" cellspacing="0" cellpadding="0">
                          <tr>
                            <td width="15">&nbsp;</td>
                            <td width="178"><? include("sc_headlines.php"); ?><font face="Verdana" size="1" style="margin-top: 4px;">{_boxes_lastnews}</font></td>
                            <td width="11">&nbsp;</td>
                          </tr>
                        </table></td>
                        <td valign="top" background="include/designs/design_57-silber/Bilder/wars_box.jpg" width="202" height="91"><table width="202" border="0" cellspacing="0" cellpadding="0">
                          <tr>
                            <td width="13">&nbsp;</td>
                            <td width="185"><? include("sc_results.php"); ?>{_boxes_nextwars}</td>
                            <td width="10">&nbsp;</td>
                          </tr>
                        </table></td>
                        <td valign="top" background="include/designs/design_57-silber/Bilder/forum_box.jpg" width="204" height="91"><table width="204" border="0" cellspacing="0" cellpadding="0">
                          <tr>
                            <td width="13">&nbsp;</td>
                            <td width="177"><? include("latesttopics.php"); ?><font face="Verdana" size="1" style="margin-top: 4px;">{_boxes_lastforum}</font></td>
                            <td width="14">&nbsp;</td>
                          </tr>
                        </table></td>
                      </tr>
                    </table></td>
                  </tr>
                  <tr>
                    <td><table width="610" border="0" cellspacing="0" cellpadding="0">
                      <tr>
                        <td>&nbsp;</td>
                        <td>&nbsp;</td>
                        <td>&nbsp;</td>
                      </tr>
                      <tr>
                        <td width="10">&nbsp;</td>
                        <td width="596">
                        {EXPLODE}
             </td>
                        <td width="10">&nbsp;</td>
                      </tr>
                    </table></td>
                  </tr>
                </table></td>
              </tr>
            </table></td>
            <td width="77" height="11" align="left" valign="top" background="include/designs/design_57-silber/Bilder/bg_farbe_rechts.jpg"><table width="182" border="0" cellspacing="0" cellpadding="0">
              <tr>
                <td background="include/designs/design_57-silber/Bilder/bg_farbe_rechts.jpg"><table width="182" border="0" cellspacing="0" cellpadding="0">
                  <tr>
                    <td valign="top" align="left" background="include/designs/design_57-silber/Bilder/nav_linksi.jpg" width="182" height="21"><table width="100%" border="0" cellspacing="1" cellpadding="0">
              <tr>
                <td background="include/designs/design_57-silber/Bilder/nav_linksi.jpg" width="182" height="21"><table width="100%" border="0" cellspacing="1" cellpadding="0">
                  <tr>
                    <td width="7%">&nbsp;</td>
                    <td width="62%" valign="middle"><font color="#999999" style="font-family:Tahoma; font-size:12px ; font-weight:bold">Userlogin</font></td>
                    <td width="31%">&nbsp;</td>
                  </tr>
                </table></td>
              </tr>
                    </table></td>
                  </tr>
                  <tr>
                    <td background="include/designs/design_57-silber/Bilder/bg_farbe_rechts.jpg"><table width="182" height="100" border="0" cellpadding="0" cellspacing="1">
                      <tr>
                        <td width="100%" align="left" valign="top"><? include("login.php"); ?>{_boxes_login}</td>
                      </tr>
                    </table></td>
                  </tr>
                  <tr>
                    <td valign="top" align="left" background="include/designs/design_57-silber/Bilder/nav_linksi.jpg" width="182" height="21"><table width="100%" border="0" cellspacing="1" cellpadding="0">
              <tr>
                <td background="include/designs/design_57-silber/Bilder/nav_linksi.jpg" width="182" height="21"><table width="100%" border="0" cellspacing="1" cellpadding="0">
                  <tr>
                    <td width="7%">&nbsp;</td>
                    <td width="62%" valign="middle"><font color="#999999" style="font-family:Tahoma; font-size:12px ; font-weight:bold">
                    Sponsoren</font></td>
                    <td width="31%">&nbsp;</td>
                  </tr>
                </table></td>
              </tr>
                    </table></td>
                  </tr>
                  <tr>
                    <td><a href="index.php?site=contact"><img src="include/designs/design_57-silber/Bilder/sponsors.jpg" width="182" height="105" border="0"></a></td>
                  </tr>
                  <tr>
                    <td><a href="index.php?site=contact"><img src="include/designs/design_57-silber/Bilder/sponsors.jpg" width="182" height="105" border="0"></a></td>
                  </tr>
                  <tr>
                    <td><a href="index.php?site=contact"><img src="include/designs/design_57-silber/Bilder/sponsors.jpg" width="182" height="105" border="0"></a></td>
                  </tr>
                  <tr>
                    <td valign="top" align="left" background="include/designs/design_57-silber/Bilder/nav_linksi.jpg" width="182" height="21">
                    
                    {_list_menunr3@ 
                    <table width="100%" border="0" cellspacing="1" cellpadding="0">
              		<tr>
                	<td background="include/designs/design_57-silber/Bilder/nav_linksi.jpg" width="182" height="21">
                		<table width="100%" border="0" cellspacing="1" cellpadding="0">
                  		<tr>
                    	<td width="7%">&nbsp;</td>
                    	<td width="62%" valign="middle"><font color="#999999" style="font-family:Tahoma; font-size:12px ; font-weight:bold">%1</font></td>
                    	<td width="31%">&nbsp;</td>
                  		</tr>
                		</table>
                	</td>
              		</tr>
                    </table>
                    
                    </td>
                  	</tr>
                  	<tr>
                    <td valign="top" align="left" background="include/designs/design_57-silber/Bilder/box_rechts.jpg" width="182" height="109"><table width="182" border="0" cellspacing="0" cellpadding="0">
                      <tr>
                        <td width="10">&nbsp;</td>
                        <td width="168">%2</td>
                        <td width="10">&nbsp;</td>
                      </tr>
                    </table>
                    }
                    
                    
                    </td>
                  </tr>
                  <tr>
                    <td><img src="include/designs/design_57-silber/Bilder/under_box_rechts.jpg" width="182" height="82"></td>
                  </tr>
                </table></td>
              </tr>
            </table></td>
          </tr>
          <tr>
            <td height="27" colspan="3"><table width="974" border="0" cellspacing="0" cellpadding="0">
                <tr>
                  <td><img src="include/designs/design_57-silber/images/footer_63.jpg" width="465" height="36" border="0" usemap="#Map2">
                    <map name="Map2">
                      <area shape="rect" coords="136,12,200,30" href="http://z-gfx.de/" target="_blank" title="free Clandesigns, Webspell Templates,kostenlose Clantemplates">
                      <area shape="rect" coords="235,13,331,31" href="http://www.pcmasters.de/" target="_blank">
                    <area shape="rect" coords="370,12,460,30" href="http://zurro-gaming.de/" target="_blank" title="free Clandesigns, Webspell Templates,kostenlose Clantemplates">
                    </map>                </td>
                  <td background="include/designs/design_57-silber/images/footer_64.jpg" width="509" height="36">&nbsp;</td>
                </tr>
              </table></td>
            </tr>
        </table></td>
      </tr>
    </table>
    
    </center>
    
    <map name="Map">
    <area shape="poly" coords="103,1,61,44,158,46,203,2,302,3" href="#">
    <area shape="poly" coords="110,20" href="#"><area shape="poly" coords="206,2,159,46,261,45,304,3,307,2" href="#">
    <area shape="poly" coords="407,3,364,45,267,44,308,3,411,2,370,43,469,45,512,1" href="#">
    <area shape="rect" coords="525,6,605,44" href="http://z-gfx.de/" target="_blank" title="free Clandesigns, Webspell Templates,kostenlose Clantemplates">
    </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>}



    Zuletzt modifiziert von elementz am 23.03.2008 - 14:25:31
    Die Welt ist eine Bühne ! Und wir die Puppen die Unterhalten werden !!!
    0 Mitglieder finden den Beitrag gut.
  3. #3
    User Pic
    Amirez Mitglied
    Registriert seit
    02.03.2008
    Beiträge
    158
    Beitragswertungen
    1 Beitragspunkte
    ja dann hau doch den ganzen google kram aus der index.htm raus... sowie du es halt haben möchtest...

    ich sehe da nun kein großes problem, auch nicht, wenn man nur dürftige html kenntnisse hat..

    ändere es halt stück für stück ab und schau dir imemr an wie es ausschaut... und mach dir ne kopie vorab, falls du es mal übertreibst mit dem zeilen löschen zwinker
    0 Mitglieder finden den Beitrag gut.
  4. #4
    User Pic
    elementz Mitglied
    Registriert seit
    19.11.2007
    Beiträge
    69
    Beitragswertungen
    0 Beitragspunkte
    Hab ich schonn....

    nur dann sieht die hp ganz komisch aus wenn ich eine google zeile lösche grumml

    Und das weiße hinter den news krieg ich auch net weg^^
    Die Welt ist eine Bühne ! Und wir die Puppen die Unterhalten werden !!!
    0 Mitglieder finden den Beitrag gut.
  5. #5
    User Pic
    Amirez Mitglied
    Registriert seit
    02.03.2008
    Beiträge
    158
    Beitragswertungen
    1 Beitragspunkte
    ja die tabellen musst du bestehen lassen, damit sich nix verschiebt, oder überlegen was da sonst rein soll...

    das weisse hinter den news... müsste ja an sich in der css-datei vermerkt sein.. durchsuch die doch mal.. und schau nach wo ein überpunkt passt, bzw die farbe hinterlegt ist und ändere sie ab..

    übersicht der farben findest z.b. bei "selfhtml" falls du da nix hast...
    0 Mitglieder finden den Beitrag gut.
  6. #6
    User Pic
    elementz Mitglied
    Registriert seit
    19.11.2007
    Beiträge
    69
    Beitragswertungen
    0 Beitragspunkte
    Hab ich auch geht net arhgggggggg

    Und in der Sytle.css find ich nichs... :((
    Die Welt ist eine Bühne ! Und wir die Puppen die Unterhalten werden !!!
    0 Mitglieder finden den Beitrag gut.
  7. #7
    User Pic
    obertier Mitglied
    Registriert seit
    15.09.2007
    Beiträge
    141
    Beitragswertungen
    0 Beitragspunkte
    schau doch mal wo in der css überall #FFFFFF steht

    dies änderst du um und schaust was sich verändert hat

    denne dürfteste aufn besten weg sein um es zu ändern


    vorhher aber css absichern


    mfg obertier
    0 Mitglieder finden den Beitrag gut.
Geschlossen

Zurück zu Design und Templates

Optionen: Bei einer Antwort zu diesem Thema eine eMail erhalten