There is an html error regarding typed code or css structure.
HTML:
<body>
<div class="football">
<h3>ho</h3>
</div>
<footer>
<h3>test</h3>
</footer>
</body>
CSS
body.football h3 {
color: #a07a40;
}
footer h3 {
color: red;
}
Fiddle example .
Or, if football is in the footer, you need to set the class.
footer h3 {
color: red;
}
footer .football h3 {
color: #a07a40;
}
Fiddle
source
share