Bonjour,

Il m'arrive une chose étrange avec mon menu: Je ne parvient pas à changer la taille de la police, ni à la mettre en gras!

http://gribouille26.free.fr/ Ca c'est pour voir. Le menu est à gauche dans les boutons verts.

La partie de CSS qui va avec:
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
.menugauche { 
padding: 0; 
margin: 20; 
list-style-type:none; 
} 
.menugauche li { 
margin-bottom: 15px; 
} 
.menugauche a { 
display: block;
width: 100px;
height: 31px;
font-family:Arial, Helvetica, sans-serif;
font-size: 1em;
font-weight: bold;
background-color: #5F7547;
text-align: center;
color: #fff;
text-decoration: none;
margin: 2px 0;
} 
.menugauche a:link, .menugauche a:visited {
border-top: 1px solid #cecece;
border-bottom: 2px solid #4a4a4a;
border-left: 1px solid #cecece;
border-right: 2px solid #4a4a4a;
}
.menugauche a:hover { 
border-bottom: 1px solid #cecece;
border-top: 2px solid #4a4a4a;
border-right: 1px solid #cecece;
border-left: 2px solid #4a4a4a;
}
Si quelqu'un peu m'éclairé, merci d'avance!