Bonjour, je rencontre un petit problème avec mon menu horizontal, voyer par vous même.



Mon css concernant le menu

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
 
#menu
{
	width:100%;
	height:35px;
	display:block;
	list-style-type:none;
	text-decoration:none;
	margin:0;
	padding:0;
	line-height:0px ; margin:0px ; padding:0px ;
	background:url("image/fond_menu.gif") top center;
}
 
#menu li 
{
	display:block;
	height:35px;
	color:#700f0f;
	list-style-type:none;
	text-decoration:none;
	float:left;
	margin:0;
}
 
#menu ul
{
	text-decoration:none;
	list-style-type:none;
	float:left;
	margin-left:auto;
	margin-right:auto;
	text-align:center;
}
Mon html

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
 
<div id="menu">
					<li>
						<ul>*recherche_2*</ul>
						<ul>Accueil</ul>
						<ul>Promotions</ul>
						<ul>Nouveautés</ul>
						<ul>*votre_compte*</ul>
						<ul>Contact</ul>
					</li>
		</div>
Si quelqu'un peut me venir en aide.
Merci.