I am trying to use Glyphicons for a portal idea and when the icon is hovered over the associated link also changes color.
<div class="portal">
<table>
<tr>
<td><div align="center"><a href="clientarea.php" class="glyphicons home"/></a></div></td>
<td><strong><a href="clientarea.php">Home</a></td>
</tr>
</table>
</div>
I have tried the following
.portal a:hover {
color: #BC2328;
}
.portal a:hover:before {
color: #BC2328;
}
But that only changes one at a time where as I would like both the icon and text url to change color; which either one is hovered over.
Help appreciated.