Reputation: 395
<a src="http://jsfiddle.net/gzhLfthy/"> </a>
I'm sharing jsfiddle please take a look over it.
Upvotes: 1
Views: 82
Reputation: 167212
It is because of a rule in this selector:
#navbar>ul>li>ul>li
Give this in your CSS file:
#navbar>ul>li>ul>li {background: transparent;}
It is here in your CSS:
#navbar li:hover > a {
background:#5cadff;
color:#fff;
}
Upvotes: 2
Reputation: 4690
Remove background color from a hover
#navbar li:hover > a {
/* background:#5cadff;*/
color:#fff;
}
Please find updated fiddle http://jsfiddle.net/gzhLfthy/1/
Upvotes: 2
Reputation: 1388
Remove this on your css
#navbar>ul>li>ul>li:hover
{
background:#204d86;
}
Upvotes: 2