How can I change the color of a link inside a DIV? The current code isn't working for me.
<style type="text/css">
.someDiv
{
font-size:14px;
color:#c62e16;
}
</style>
<div id="someDiv">
<a href="http://www.some.com" id="someLink">Some Text</a>
</div>
Appreciate any help on this. Thanks!