Node Link

Dynamic

Well-known member
Hi everyone,

How do you change the colour of the node title links? I do not want to do it through the colour selector, and manually setting them in the style properties does not work. Any ideas?

Thanks.
 
Adding the following to extra.css will change the colour. That said I'm quite sure this can also be done via the style properties. You might not need to use the !important either.

Code:
.node .nodeTitle a {
    color: red !important;
}
 
Top Bottom