I am having trouble with what should be a simple task!
On my webpage, I have this link:
<a class='action' href='javascript:void(0)' OnClick='run()'> run </a>
Along with the following CSS:
.action {
color: #e17009;
text-decoration: underline;
font-size: 80%;
}
Despite specifying the color as #e17009, it stubbornly displays in black. Changing other properties like size works fine, but not the color?
This link is dynamically generated using jQuery and is refreshed periodically, but I don't believe that should have any impact on the issue.