Bonjour tout le modne svp j'ai un probleme avec css il s'applique plus :

bon le probleme quand je choisir la Couleur du thème il s'applique juste sur l'en-tête et pour les autres ca reste le meme couleur.


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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
header, footer, section, aside, nav, article
{
    display: block;
}
 
body
{
    background-color: #aaa;
    font-size: 1em;
    font-family: Arial, SunSans-Regular, Sans-Serif;
    color: #564b47;
}
 
/* ----------container zentriert das layout-------------- */
 
#container
{
    /*max-width: 1200px; min-width:320px; margin:0  auto;*/
    background-color: #eee;
}
 
/* ----------header for logo-------------- */
#top:after
{
    height: 0;
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    padding: 3px;
}
#top
{
    background-color: #eee;
}
 
#top header
{
    padding: 5px;
    float: left;
    width: 100%;
}
 
header p
{
    text-transform: uppercase;
    font-size: 0.8434em;
}
 
header img
{
    border: 0;
    padding: 0 0 10px;
}
 
.mini, .menubutton
{
    display: none;
}
 
.menubutton a
{
    cursor: pointer;
}
 
/* new nav */
nav
{
    padding: 0 20px 0 0;
    margin: 0 0 2px;
}
 
/*nav ul:after {
    height: 0;
    content: ".";
    display: block;
    clear: both;
  visibility:hidden;
  }
nav ul {
  list-style-type: none;
  float:right;
}
nav li {
  float: left;
  margin: 0 3px 0 0;
  }*/
 
nav a, nav a:visited
{
    color: #FFFFFF;
    display: block;
    padding: 5px 20px;
    text-decoration: none;
    transition: all 0.5s linear;
}
 
nav a:hover
{
    color: #564b47;
    background-color: #ccc;
}
nav a:active
{
    color: #000000;
}
nav a.selected
{
    color: #fff;
    background-color: #f67;
}
 
/* ----------------- content--------------------- */
section:before
{
    height: 0;
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
}
 
section#content
{
    float: left;
    width: 100%;
    padding: 20px;
    background-color: #fff;
    min-height: 825px;
}
p, pre
{
    padding: 0 0 20px;
    line-height: 1.5em;
}
ul
{
    list-style-type: none;
    line-height: 1.5em;
}
article header
{
    background: #fff;
    padding: 0;
}
 
article footer
{
    border-bottom: 1px solid #564B47;
    color: #564B47;
    padding: 0 0 20px;
    margin: 0 0 20px;
}
 
/* -------------- side infos ------------- */
 
aside
{
    padding: 20px;
    float: right;
    width: 21%;
}
 
/* -----------footer--------------------------- */
footer
{
    background-color: #5D5D5D;
    border-bottom: 1px solid #666666;
    border-top: 1px solid #666666;
    bottom: 0;
    height: 36px;
    left: 0;
    opacity: 0.5;
    position: fixed;
    width: 100%;
    z-index: 99;
}

Merci d'avance