Is there a way to create an on-hover effect for my icon when hovering over a list item in my dropdown menu?
I've shared a codepen link where you can see the issue I'm facing. Everything highlights except the image because I'm only changing the background color on hover. How can I achieve the desired effect properly?
Best regards, DDaems
http://codepen.io/anon/pen/KEiym
CSS
#userbar {
font-size:12px;
position:fixed;top:0; left:0;
width:1170px;height:2.636em;
margin:auto;padding:0;
color:#b5b5b5;background-color:rgb(51,51,51);
border-bottom:2px solid #b5b5b5;
opacity:0.95;z-index: 1
}
...
HTML
<div id="userbar">
<ul id="menubar">
...
</ul>
</div>