Bonjour
J'ai un petit souci avec la couleur de mes liens...
Sur cette page par exemple, le lien est en bleu, alors que d'après mon css il devrait être en gris. Je ne comprends pas pourquoi...
http://www.comeric.fr/e/demdevis.htm
Et sur cette page ils sont en violet : http://www.comeric.fr/e/parrainage.htm
Voici mon css :Pouvez-vous m'aider svp ?
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
63
64
65
66
67
68
69
70
71 @charset "utf-8"; /* Pas de bordure pointillée ou halo lors du clic sur un lien */ * { outline: none; } body { /* overflow: hidden;*/ font-family: Verdana, Arial, Helvetica, sans-serif; color: #666; font-weight: normal; font-size: 11px; text-decoration: none; background: #FFFFFF; /* background-image: url("images/fond2.gif");*/ /* background-repeat:repeat-x;*/ margin: 0; /* il est conseillé de mettre à zéro la marge et le remplissage de l'élément body, pour tenir compte des différentes valeurs par défaut des navigateurs */ padding: 0; text-align: center; /* ce paramétrage centre le conteneur dans les navigateurs IE 5.x. Le texte est ensuite aligné à gauche (valeur par défaut) dans le sélecteur #container */ } a:link { color: #6666; text-decoration : underline; } a:hover { color: #6666; text-decoration : underline; } a:visited { color: #6666; text-decoration : underline; } h1 { margin: 0; padding: 0; color: #666; font-weight: bold; font-size: 11px; text-decoration: none; display: inline; } .Style1 { color: #666; font-size: 10px; text-decoration: none; } a:link.Style1{color: #666;text-decoration: underline;} a:hover.Style1{color: #666;} .Style2 { color: #662067; font-weight: bold; font-size: 14px; text-decoration: none; } .Style3 { color: #666; font-weight: bold; font-size: 11px; text-decoration: none; } a:link.Style3{color: #666;text-decoration: underline;} a:hover.Style3{color: #666;} img { border: none; } div { padding: 0; margin: 0; }
Merci
Partager