Einzelnen Beitrag anzeigen
  #3 (permalink)  
Alt 06.11.2008, 13:52
mux mux ist offline
Neuer Benutzer
neuer user
Thread-Ersteller
 
Registriert seit: 06.11.2008
Beiträge: 8
mux befindet sich auf einem aufstrebenden Ast
Standard

ok ok, dachte, die Beschreibung wäre genau genug. Also hier die Codes:

Code:
<div id="container">
	<div id="faux">
		<div id="navi">
		</div>
		<div id="content">
		</div>
	</div>
	<div id="contentbottom">
	</div>
</div>
<div id="footer">
</div>
und

Code:
html, body {
height:100%;
}
/*Container mit fester Breite für Navi und Content*/
#container {
width:800px;
margin:auto;
min-height: 100%;
height: auto !important;
height: 100%;
}
#faux{
width:800px;
background: url(conkachel.jpg) repeat-y;
height:auto;
float:left;
}
#navi {
display:block;
width: 150px;
float:left;
margin: 0.4em 0;
}
#content{
width: 580px;
float:right;
min-height: 100%;
height: auto !important;
height: 100%;
margin-bottom: 30px;
padding: 0 10px;
}
#contentbottom {
background: url(conbottom.gif) no-repeat;
float:left;
width:800px;
height:40px;
}
#footer {
clear:both;
width: 800px;
height: 25px;
margin:auto;
margin-top:-25px;
}
Ich hoffe, nun ist mein Problem verständlicher. Danke
Mit Zitat antworten