So, I attempted this. I edited the additional.css for the Style I'm using as such:
Code:
.postcontent a {
color: #FF00FF;
text-decoration: none;
font-weight: bold;
}
.postcontent a:link {
color: #FF00FF;
text-decoration: none;
font-weight: bold;
}
.postcontent a:visited {
color: #FF00FF;
text-decoration: none;
font-weight: bold;
}
.postcontent a:active {
color: #FF00FF;
text-decoration: none;
font-weight: bold;
}
.postcontent a:hover {
color: #c1272d;
text-decoration: underline;
font-weight: bold;
}
But it just doesn't seem to be taking. Instead, it is just using the global body link colors instead. Here is the site I'm working on:
http://stoicstudio.com/forum/showthr...ull=1#post2756
You'll note the first word (Acromage) is a link but it's not pink (just using pink so its an obvious change and then making it something better).
Any ideas what I'm doing wrong?