I am facing an issue with the following code
<ul style="position: absolute; z-index: 999999999;">
<li><a href="#" id="home_link">Home</a></li>
<li><a href="#" id="hits_link">music</a></li>
<li><a href="#" id="cinema_link">cinema</a></li>
<li><a href="#" id="shows_link">shows</a></li>
<li><a href="#" id="timeout_link">timeout</a></li>
<li><a href="#" id="win_link">win</a></li>
</ul>
<div id="logo"></div>
I am looking to adjust the background position of the div#logo on hover over any "a" element
I have attempted using this CSS selector without success
ul li a#hits_link:hover + div#logo{background-position:-198px 0px;}
Any suggestions are greatly appreciated