|  PHP beginner |  | Hallo, 
 ik wil graag een fixed footer, zodat deze niet meescrollt naar beneden, maar steeds tegen de bodem blijft staan.
 
 Met CSS is het me gedeeltelijk gelukt: de footer blijft tegen de bottom, maar het probleem is dat ik bij mijn container nu 2 scrollbars zijn.
 
 Code:
 
 
    
    
        
            
                
.bottom {
	position: absolute;
	width: 90%;
	left: 50%;
	margin-left: -45%;
	height: 30px;
	bottom: 0%;
	background-color:#CCCCCC;
	border-left: 1px solid;
	border-right: 1px solid;
	border-top: 1px solid;
	border-color: #000000;
}
#container {
	height: 95%;
	overflow: auto;
}
.html, body {
	background-color: #FFFFFF;
	margin: 0px;
	padding: 0px;
	min-height: 100%;
}
 .bottom {	position: absolute;	width: 90%;	left: 50%;	margin-left: -45%;	height: 30px;	bottom: 0%;	background-color:#CCCCCC;	border-left: 1px solid;	border-right: 1px solid;	border-top: 1px solid;	border-color: #000000;}#container {	height: 95%;	overflow: auto;}.html, body {	background-color: #FFFFFF;	margin: 0px;	padding: 0px;	min-height: 100%;}
   |