I'm currently working on a simple design, but I've encountered an issue. When I hover over the number blocks (1, 2, etc.), my hover effect doesn't seem to work. My intention is to hover over the list item and change the entire digit text from light green to white. The styling for this seems correct to me, so I can't figure out where the problem lies.
Code Snippet:
<ul class="results">
<li>
<span class="number">1</span>
<a href="#" target="_blank" class="listitem">
<p class="title">Lorem</p>
<p class="desc">Lorem lfdfdfdfdfdsfdfdfdf</p>
</a>
</li>
</ul>
CSS Code:
.results {
margin:25px 26px;
}
/* CSS code continues... */
If anyone could provide me with assistance in resolving this issue, it would be greatly appreciated. You can view the JS Fiddle link here.