XF 1.4 Changing Copyright Color?

That's because !important is being used (by default) in the xenforo.css template:

Rich (BB code):
.concealed,
.concealed a,
.cloaked,
.cloaked a
{
    text-decoration: inherit !important;
    color: inherit !important;
    *clear:expression( style.color = parentNode.currentStyle.color, style.clear = "none", 0);
}

a.concealed:hover,
.concealed a:hover
{
    text-decoration: underline !important;
}

You'll need to use your own !important:

Code:
#copyright a {
    color: @primaryMedium !important;
}

You can change the color to use another color palette item or hard-code it with a specific color.

If you'd like to change the hover effects, use this and be sure to, once again, add !important at the end:

Code:
#copyright a:hover {
}
 
Top Bottom