XF 1.3 Copyright Link Color

Amaury

Well-known member
Two questions:
  1. Is it permitted to change the link color?
  2. If so, how can I change the link color of the and only the copyright? Last time I tried, it also got other things, such as the location in the message user info box and member cards, so I reverted my change.
 
Yes it's permitted to change the colour. It has to be visible, so of course it would be necessary to change it on some styles to ensure it was visible.

Code:
#copyright a
{
    color: red;
}

That should change it no problem.
 
Yes it's permitted to change the colour. It has to be visible, so of course it would be necessary to change it on some styles to ensure it was visible.

Code:
#copyright a
{
    color: red;
}

That should change it no problem.

Thanks, Chris!

Visibility won't be a problem since I'll be making it the same color as all the other links, which are controlled by @primaryMedium.
 
Top Bottom