Having trouble with this HTML element :
<span class="item-menu-notif non-lue" onclick="dosomething(2150)">
TEXT
</span>
These are the CSS classes :
.item-menu-notif{
display: block;
cursor: pointer;
padding: 0 0.4em 0 0.4em;
}
span.item-menu-notif:hover{
background: #aaaaaa;
}
span.item-menu-notif .non-lue{
font-weight: bold;
}
The issue is that the non-lue
class is not being used. When inspecting in Firebug, it doesn't appear on my span element.
I've attempted to troubleshoot by adding or removing the span selector in my CSS, but it's yielding the same result. Any insights on why this might be happening?