When users post a link in a post I.e Google it show's the same colour as the main body text so you can't tell, I had a look through some stylevars to change it I have changed the hover colour but when I change some it changes every single link on my forum to that colour?
How would I change links that are in posts colour?
Thanks
Add the following code at the additional.css template:
Code:
.postcontent a {
color: red;
}
And replace red with the actual color value that you want your links to show up.