Bonjour,

J'ai un problème lors de la création de mon site web qui concerne le top menu.
J'ai crééé 7 MenuItems mais à l'affichage ils s'affichent sur deux lignes.Le MenuStyle que je veux adopter est le Legacy-Flat List.
Que dois je faire???
S'agit il d'un pb au niveau du CSS???

Voici le code CSS relatif à la zone dans laquelle se trouve le topmenu:
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
 
#user3-left {
	width: 553px;
	height: 30px;
	padding-left: 50px;
	position: absolute;
	bottom: 0;
	left: 148px;
	overflow: hidden;
	background: url(../images/menu_start_bg.png) no-repeat 0 bottom;
}
#user3-right {
	padding-right: 50px;
	background: url(../images/menu_end_bg.png) no-repeat right bottom;
}
#user3 {
	width: 503px;
	height: 30px;
	overflow: hidden;
#user3 ul {
	width: 504px;
	height: 30px;
}
#user3 ul li {
	width: 125px;
	height: 29px;
	float: left;
	margin-right: 1px;
	border-bottom: 1px solid #fff;
}
#user3 ul li a {
	color: #fff;
	width: 125px;
	height: 15px;
	padding: 8px 0 6px;
	display: block;
	text-align: center;
	text-decoration: none;
	background: url(../images/menu_bg.png) no-repeat 0 0;
	border-bottom: 1px solid #fff;
}
#user3 ul li a:hover,
#user3 ul li:hover a,
#user3 ul li.active a {
	background: url(../images/menu_active_bg.png) no-repeat 0 0;
 
}
Merci