Bonjour,
sur ce site, je n'arrive pas à faire que le fond du menu (couleur marron) aille jusqu'en bas de page ...

J'aurais donc besoin d'aide pour réussir à le faire. Voici le CSS :
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
 
@charset "UTF-8";
/* CSS Document */
 
 
body{
	margin:0;
	padding:0;
	background-color:#f6e29a;
	font-family:"Lucida Grande CY", Arial, sans-serif;
	font-size:14px;
}
 
#conteneur{
	margin-left : auto;
	margin-right : auto;
	border : 0px;
	z-index:1;
	width: 1000px;
	color:#594240;
	background-color:#ecb802;
}
 
#contenu{
	position:absolute;
	top:0px;
	width:1000px;
	min-height:100%;
	background-color:#ecb802;
	z-index: 2;
}
 
#ban{
	width:1000px;
	height:156px;
	background-image:url(img/ban.jpg);
	background-repeat:no-repeat;
	z-index:4;
}
 
#menu{
	background-color:#6e524e;
	width:150px;
	float:left;	
	min-height:100%;
}
 
.signature{
	color:#6e524e;
	font-size:11px;
	padding-bottom:5px;
}
 
a:hover{
	text-decoration:none;
	color:#FFFFFF;
}
 
a{
	text-decoration:none;
	color:#6e524e;
}