zu 1.)Finde in der stylesheet.css:
Code: Alles auswählen
body {
/* Text-Sizing with ems: http://www.clagnut.com/blog/348/ */
font-family: "Lucida Grande", Verdana, Helvetica, Arial, sans-serif;
color: #000;
background: #009de0 url(images/body.gif) fixed;
font-size: 10px;
margin: 0;
padding: 0 10px;
}
Hier sind die letzten beiden Zeilen überflüssig, da ja schon vorher das hier:
Code: Alles auswählen
* {
/* Reset browsers default margin, padding and font sizes */
margin: 0;
padding: 0;
}
alle Innen- und Außenabstände erstmal auf 0 setzt.
zu 2.: Finde in der stylesheet.css:
Code: Alles auswählen
background: #009de0 url(./images/backgroundL.jpg) no-repeat fixed 0 0;
bzw.
Code: Alles auswählen
background: #009de0 url(./images/backgroundR.jpg) no-repeat fixed 100% 0;
Ersetze mit:
Code: Alles auswählen
background: #009de0 url(./images/backgroundL.jpg) no-repeat scroll 0 0;
Code: Alles auswählen
background: #009de0 url(./images/backgroundR.jpg) no-repeat scroll 100% 0;
zu3.: Dann musst du mit %-Werten arbeiten, in etwa so:
Code: Alles auswählen
/* drei geteilter Hintergrund */
div#background3left {
background: #009de0 url(./images/backgroundL.jpg) no-repeat scroll 100% 0;
float:left;
width:15%;
height:1200px;
}
div.background3content {
float:left;
width: 69%;
}
div#backgroundright {
background: #009de0 url(./images/backgroundR.jpg) no-repeat scroll 0 0;
float:right;
width:15%;
height:1200px;
}
Ich denke, das kommt deinen Vorstellungen schon ziemlich nahe.
