Andy: DIV Problem

Beitrag lesen

Nabend

|===============================================================|

body {
 background:#e6e6e6;
 font-family:Verdana,Arial,Tahoma;
 font-size:10px;
}
#content {
 background:url(../images/bg.gif);
 background-repeat:repeat-y;
 margin-bottom:20px;
 margin-left:20px;

Warum margin? mach doch einfach left:, bottom:,usw.

width:620px;
}
#header {
 background-image:url(../header/header_1.jpg);
 width:620px;
 height:80px;
}
#navigation {
 margin-left:10px;
 margin-top:10px;

s.o.

}
#content_text {
 top:0px;
 margin-left:200px;
 margin-right:18px;

s.o.
in diesem Fall macht es sogar etwas aus!

}

|===============================================================|

Probier mal die letzten zwei Punkte so:
#navigation {
   position: absolute;
 left:35px;
 top:110px;
}
#content_text {
   position: absolute;
 top:110px;
 left:220px;
 right:18px;
}
Andy