Layouten ist einfach nicht mein Ding, vielleicht kann mir hier ja jemand helfen.
[Blockierte Grafik: http://bdt600.bd.funpic.de/temp/layout.jpg]
Die Rahmen oben und unten sind 1000px breit und 30px hoch, die Rahmen links und rechts sind jeweils 30px breit. Alle div's haben eigene Hintergrundbilder und der ganze Kram soll zentriert auf der Seite stehen. Mein CSS:
Code
*
{
padding : 0px;
margin : 0px;
font-family : Helvetica, Arial, sans-serif;
color : #31313A;
font-size : 12px;
border: 0px;
}
#main
{
width : 1000px;
height: 100%;
margin : 0 auto;
}
#header
{
width : 100%;
height: 30px;
margin-top : 30px;
background-image : url(../images/header.jpg);
background-repeat: no-repeat;
}
#left
{
width : 30px;
height: 100%;
margin : 0px;
background-image : url(../images/left.jpg);
background-repeat: repeat-y;
float:left;
}
#content
{
width:880px;
margin-left:30px;
margin-right:30px;
z-index:5;
}
#right
{
width : 30px;
height: 100%;
margin: 0px;
background-image : url(../images/right.jpg);
background-repeat: repeat-y;
float:right;
z-index:15;
}
#bottom
{
width : 100%;
height: 30px;
margin-bottom : 30px;
background-image : url(../images/bottom.jpg);
background-repeat: no-repeat;
}
Alles anzeigen
Wäre nett, wenn mir das jemand korrigieren könnte.
Danke
bandit