I have this class:
.search-modal-navigation-link {
font-family: Arial, Helvetica, sans-serif;
font-weight: bold;
color: #FFF;
height: 32px;
font-size: 12px;
text-align: center;
float: left;
margin-right: 22px;
}
And I tried targeting all links in this class so I did this:
a.search-modal-navigation-link:link {
text-decoration: underline;
color: red;
}
and I get nothing, why is this? Thank you :))!
Edit: My Html
<div class="search-modal-navigation-tab">
<div class="search-modal-navigation-link"><a href="#">
<img src="img/icons/01-passive.png" width="20" height="21" border="0" /><BR />
All Events</a></div>
<div class="search-modal-navigation-link">
<img src="img/icons/01-passive.png" width="20" height="21" /><BR />
All Events</div>
</div>