Suche im Forum:
Suchen


Autor Nachricht
Beitrag20.10.2009 um 12:52 (UTC)    
Titel: Header Über der Werbung?!

Moinsen, was brauche ich für einen Code damit der Header nicht mehr Über der Werbung ist?!

Das design kommt von nnDesign aber er antwortet seit Gestern net, naja wer kann mir helfen?!

Lg
Beitrag20.10.2009 um 12:55 (UTC)    
Titel:

Ich sehe die Werbung auf deiner Seite. Welchen Browser benutzt du?
______________

Beitrag20.10.2009 um 13:01 (UTC)    
Titel:

3fragezeichen hat Folgendes geschrieben:
Ich sehe die Werbung auf deiner Seite. Welchen Browser benutzt du?


Nein, ohh Sorry.
MEIN FEHLER!!

Auf der Seite Embarassed

www.kallaechen.de.tl

Lg
Beitrag20.10.2009 um 13:08 (UTC)    
Titel:

achso^^ In deinem Designcode gibt es folgende Stelle:

Zitat:
#authheader { position:absolute; top:35px; left:50%; margin-left:-400px; }


Die rot markierte Zahl musst du erhöhen.
______________

Beitrag20.10.2009 um 13:11 (UTC)    
Titel:

3fragezeichen hat Folgendes geschrieben:
achso^^ In deinem Designcode gibt es folgende Stelle:

Zitat:
#authheader { position:absolute; top:35px; left:50%; margin-left:-400px; }


Die rot markierte Zahl musst du erhöhen.


Das einzige was ich da finde ist <div id="authheader">
Confused Confused Confused

Hier mal der Code, ich finde das net =(

Text über


Code:
<div id="authheader"> <!-- Starte header einsetzen --> <img src="http://img.webme.com/pic/n/nndesign/sigvi_ge_header.png" height="165" width="800" alt="" /> <!-- Ende Header --> </div> <div id="attention"><a href="http://nndesign.de.tl" target="_blank" id="crightadvice">Design by NNDesign</a></div>


CSS Code


Code:
*/img {     border:none;     }  body {     background:url(http://img.webme.com/pic/n/nndesign/sigvi_ge_topbackground.png) repeat-x #EEEEEE 0px 90px;     margin:0;     padding:0;     height:100%;     width:100%;     font-family:Verdana, Arial, Helvetica, sans-serif;     font-size:12px;  }  #container {     width:800px;     position:absolute;     top:220px;     left:50%;     margin-left:-400px;  }    #header {     display:none;  }  #pre_header {     display:none;  }  #post_header {     display:none;  }  #title {     display:none;  }  #nav_container {     float:left;    width:209px;    color:#990000;    border-bottom:#003300 1px solid;    background:#FFFFFF;  }  #nav_heading {     width:209px;     background:url(http://img.webme.com/pic/n/nndesign/sigvi_ge_navhead.png) no-repeat;     height:33px;     line-height:33px;     vertical-align:middle;     text-align:center;     font-size:12px;     color:#FFFFFF;     margin:0;     padding:0;  }  #content_container {     width:581px;    margin-left:219px;    background-color:#FFFFFF;    border-bottom:#003300 1px solid;  }  #pre_content {     width:100%;     height:43px;     background:url(http://img.webme.com/pic/n/nndesign/sigvi_ge_contenthead.png) no-repeat;  }  #content {     background-color:#FFFFFF;     padding:15px;    text-align:justify;    color:#333333;  }  #authheader {     position:absolute;    top:35px;    left:50%;    margin-left:-400px;  }  #sidebar_container {     display:none;  }  #attention {     position:absolute;    left:50%;    top:0;     margin-left:150px;    width:150px;    height:30px;    background:url(http://img.webme.com/pic/n/nndesign/cright.png) no-repeat;    text-align:center;    line-height:23px;    vertical-align:middle;    font-size:10px;    filter: alpha(opacity=50);    opacity: 0.5;  }  a#crightadvice {     color:#333333;    text-decoration:none;  }  a {     color:#006600;     text-decoration:none;  }  a:hover {     color:#009900;     text-decoration:underline;  }  a.menu {     color:#003300;     text-decoration:none;    font-weight:bold;  }  a.menu:hover {     color:#006600;     text-decoration:none;  }  #nav {     list-style:none;    margin:0;    padding:0;  }  .nav_element {     padding:0;     margin:0;     padding-left:10px;     padding-top:5px;    padding-bottom:5px;    background:#FFFFFF;  }  .nav_element:hover {     background:#D2FECD;  }  #counter {     width:100%;     color:#999999;     font-size:9px;     text-align:right;  }
Beitrag20.10.2009 um 13:13 (UTC)    
Titel:

Zitat:
*/img { border:none; } body { background:url(http://img.webme.com/pic/n/nndesign/sigvi_ge_topbackground.png) repeat-x #EEEEEE 0px 90px; margin:0; padding:0; height:100%; width:100%; font-family:Verdana, Arial, Helvetica, sans-serif; font-size:12px; } #container { width:800px; position:absolute; top:220px; left:50%; margin-left:-400px; } #header { display:none; } #pre_header { display:none; } #post_header { display:none; } #title { display:none; } #nav_container { float:left; width:209px; color:#990000; border-bottom:#003300 1px solid; background:#FFFFFF; } #nav_heading { width:209px; background:url(http://img.webme.com/pic/n/nndesign/sigvi_ge_navhead.png) no-repeat; height:33px; line-height:33px; vertical-align:middle; text-align:center; font-size:12px; color:#FFFFFF; margin:0; padding:0; } #content_container { width:581px; margin-left:219px; background-color:#FFFFFF; border-bottom:#003300 1px solid; } #pre_content { width:100%; height:43px; background:url(http://img.webme.com/pic/n/nndesign/sigvi_ge_contenthead.png) no-repeat; } #content { background-color:#FFFFFF; padding:15px; text-align:justify; color:#333333; } #authheader { position:absolute; top:35px; left:50%; margin-left:-400px; } #sidebar_container { display:none; } #attention { position:absolute; left:50%; top:0; margin-left:150px; width:150px; height:30px; background:url(http://img.webme.com/pic/n/nndesign/cright.png) no-repeat; text-align:center; line-height:23px; vertical-align:middle; font-size:10px; filter: alpha(opacity=50); opacity: 0.5; } a#crightadvice { color:#333333; text-decoration:none; } a { color:#006600; text-decoration:none; } a:hover { color:#009900; text-decoration:underline; } a.menu { color:#003300; text-decoration:none; font-weight:bold; } a.menu:hover { color:#006600; text-decoration:none; } #nav { list-style:none; margin:0; padding:0; } .nav_element { padding:0; margin:0; padding-left:10px; padding-top:5px; padding-bottom:5px; background:#FFFFFF; } .nav_element:hover { background:#D2FECD; } #counter { width:100%; color:#999999; font-size:9px; text-align:right; }


Wink
______________

Beitrag20.10.2009 um 13:17 (UTC)    
Titel:

3fragezeichen hat Folgendes geschrieben:
Zitat:
*/img { border:none; } body { background:url(http://img.webme.com/pic/n/nndesign/sigvi_ge_topbackground.png) repeat-x #EEEEEE 0px 90px; margin:0; padding:0; height:100%; width:100%; font-family:Verdana, Arial, Helvetica, sans-serif; font-size:12px; } #container { width:800px; position:absolute; top:220px; left:50%; margin-left:-400px; } #header { display:none; } #pre_header { display:none; } #post_header { display:none; } #title { display:none; } #nav_container { float:left; width:209px; color:#990000; border-bottom:#003300 1px solid; background:#FFFFFF; } #nav_heading { width:209px; background:url(http://img.webme.com/pic/n/nndesign/sigvi_ge_navhead.png) no-repeat; height:33px; line-height:33px; vertical-align:middle; text-align:center; font-size:12px; color:#FFFFFF; margin:0; padding:0; } #content_container { width:581px; margin-left:219px; background-color:#FFFFFF; border-bottom:#003300 1px solid; } #pre_content { width:100%; height:43px; background:url(http://img.webme.com/pic/n/nndesign/sigvi_ge_contenthead.png) no-repeat; } #content { background-color:#FFFFFF; padding:15px; text-align:justify; color:#333333; } #authheader { position:absolute; top:35px; left:50%; margin-left:-400px; } #sidebar_container { display:none; } #attention { position:absolute; left:50%; top:0; margin-left:150px; width:150px; height:30px; background:url(http://img.webme.com/pic/n/nndesign/cright.png) no-repeat; text-align:center; line-height:23px; vertical-align:middle; font-size:10px; filter: alpha(opacity=50); opacity: 0.5; } a#crightadvice { color:#333333; text-decoration:none; } a { color:#006600; text-decoration:none; } a:hover { color:#009900; text-decoration:underline; } a.menu { color:#003300; text-decoration:none; font-weight:bold; } a.menu:hover { color:#006600; text-decoration:none; } #nav { list-style:none; margin:0; padding:0; } .nav_element { padding:0; margin:0; padding-left:10px; padding-top:5px; padding-bottom:5px; background:#FFFFFF; } .nav_element:hover { background:#D2FECD; } #counter { width:100%; color:#999999; font-size:9px; text-align:right; }


Wink



Hihi achso daaa Rolling Eyes

Hab ich gemacht jetzt sind anber diese leisten auf dem Header Sad
Beitrag20.10.2009 um 20:35 (UTC)    
Titel:

Habs Rolling Eyes

Sieht jetzt alles normal aus?

http://kallaechen.de.tl
Beitrag20.10.2009 um 22:47 (UTC)    
Titel:

Ja, die Werbung ist nun über dem Design Wink
So sollte alles inordnung sein...

Ich werde dann mal den Thread schließen und
bedanke mich für die Helfer!

mfg Dominik
______________
Besucht die offizielle Hilfeseite vom Homepage-Baukasten:

Iceblue Generator | Red Generator | Butterfly Generator
Beiträge der letzten Zeit anzeigen:   


Powered by phpBB © 2001, 2005 phpBB Group
Deutsche Übersetzung von phpBB.de