This should be very simple, but its not working!
I have this link on my page;
<a class='action' href='javascript:void(0)' OnClick='run()'> run </a>
And then this css
.action {
color: #e17009;
text-decoration: underline;
font-size: 80%;
}
For some reason it just shows up black, i can change the size etc.. but the colour doesnt work?
This link is generated with some jquery, and is refreshed, but don think that would make any differance?
Your color declaration is being ignored because of a previous directive, or overwritten by a later one. Try changing the selector to the more explicit
a.actionor usingcolor: #e17009 !important;. If that doesn’t work, view the parsed CSS values using Firebug.