XF 2.0 change in content link color?

jbex

Member
Could anyone tell me where at in the xenforo dashboard I could change the in post links color independently from the rest of the text?
I just want to change the color to the text with hyperlink inside a post. Xenforo 2
Thank You
 
I was searching for the answer to this too and couldn't find anything. I just added this to my extra.less for the template I wanted to change.

Code:
/* Links in posts */
a.link--external
{
    color: #387144;
}

a.username
{
    color: #387144;
}

However, if you change a.username, it will change the color in some other places on the site as well. This may or may not work for your purposes.
 
Top Bottom