XF 1.4 Changing Copyright Color?

Rum Runner Entertainment

Active member
Licensed customer
I've been trying to change the color of the copyright text at the bottom to obviously make it more visible, but I haven't been successful. Any help?

Thanks.
 
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 {
}
 
Back
Top Bottom