I want to change the color of hover for "Web Site" and "Home"
<body>
<div class="navbar transparent navbar-inverse navbar-fixed-top" role="navigation">
<div class="container">
<div class="navbar-header">
<a class="navbar-brand headtop" href="#">Web Site</a>
</div>
<div class="navbar-collapse collapse">
<ul class="nav navbar-nav">
<li class="headtop"><a href="#">Home</a></li>
And css this code
a.headtop:hover, a:hover {
color: #fc4c1d;
}
But not working... how do I make it work?
a:hover {
is working for other links in body page but not working for the text inside div elements.
Thanks a lot!