I have a div and within it a <a>
can hover in the div, but the color of the anchor does not change.
HTML structure:
<div class="TamanhoECorTabs ThemeGrid_Width6">
<a id="ancora" tabindex="14" href="#">Home</a>
</div>
CSS Framework:
.TamanhoECorTabs:hover, .TamanhoECorTabs a:hover{
background-color: #428bca !important;
color: #fff !important;
border:none !important;
border-bottom: 1px solid #428bca !important;
}
I need to move the mouse over the div, change the color of the anchor, without having to hover over the anchor for the hover to work.
Another thing that is happening is that even the Home being active the hover appears. How do I get this out?