XF 2.0 How to change message links in XF2?

WoodiE

Well-known member
I seem to recall seeing a style property (user generated link, or something along those lines) for user submitted links in XF1.x.

Has this ability been removed from us in XF2 or am I just overlooking it?
 
Don't know this is what you are searching for, but you have classes for external and internal links:

Code:
a.link--internal {
    color: #4b5b8c;
    font-weight: 600;
}

a.link--external {
    color: #4b5b8c;
    font-weight: 600;
}
 
@ozzy47 and that would be incorrect. Sure it will change the link colors of user submitted links but it will also change every single link on the site far outside of the use message. The one in your screen shot is a global change where as the one in my screen shot only affects user submitted links in posts.
 
I seem to recall seeing a style property (user generated link, or something along those lines) for user submitted links in XF1.x.

Has this ability been removed from us in XF2 or am I just overlooking it?
Use this (add in extra.less and change color etc... to what you like)

CSS:
/* START Link in posts */
.message-userContent a
{
    color:#0e0588;
    text-decoration:underline;
    font-weight:normal;
}

.message-userContent a:hover
{
    color:#C30000;
    font-weight:normal;
    text-decoration:underline;
}
/* END Link in posts */
 
Back
Top Bottom