I am looking to customize my inline menu by changing the last menu item to a different colored box with unique text. I have successfully applied a custom style using the #navbar a.blogbox class, but I am struggling to figure out how to change the hover state. Can anyone provide guidance on how to script this? Thank you.
#navbar a.blogbox {
background-color: #E4E9E7;
padding: 3px;
margin-left: 4px;
border-left: none;
text-transform:uppercase;
font-weight: bold;
color: #c52a45;
}
<div id="navbar">
<ul>
<li class="activepage">HOME</li>
<li><a href="aboutus.html">about us</a></li>
<li><a href="page1.html">page 1</a></li>
<li><a href="page2.html">page 2</a></li>
<li><a href="page3.html">page 3</a></li>
<li><a href="page4.html">page 4</a></li>
<li><a href="contact.html">contact</a></li>
<li><a class="blogbox" href="/blog/index.php">Blog</a></li>
</ul>
</div>