リスト項目のホームの背景を変更して、ホバーしていない場合でもホバー プロパティがあることを確認しようとしています。クラスを使って言及しても、テキストは変わりません。
HTML :
<div id="header">
<img id="logo" src="images/logo.jpg">
<ul>
<li> <a href="#">CONTACT</a> </li>
<li> <a href="#">GALLERY</a> </li>
<li> <a href="#">EVENTS</a> </li>
<li> <a href="#" class="currentpage">HOME </a> </li>
</ul>
</div>
CSS :
#header ul {
padding-top:1em;
}
#header ul li a.currentpage {
color:white !important;
background-color: #F96E5B !important;
}
#header ul li a {
text-decoration: none;
color:#676767;
font-family: 'Oswald', sans-serif;
font-size: 1em;
float:right;
line-height: 3em;
padding-right: 1em;
padding-left:1em;
}
#header ul li a:hover{
background-color: #F96E5B;
}