Ok, I have red link colors showing on my site despite having no red whatsoever selected in my chosen forum styles color page.
I 've checked the element and can see that it is originating from a wpf script but above and beyond that, I know little else of if the color is being inherited from my theme.
I have cleared all caches both on wpf and on every one of 3 different browsers but no joy.
The text area I'm referring to is the login or register prompt that pops up when a non registered user attempts to reply to a question. It is the link color here which is red, against an orange background in my case, making the link virtually invisible.
Thoughts would be great.
You can use custom CSS code to change link colors. Please navigate to Dashboard > Forums > Settings > Styles admin page, put this CSS code in Custom CSS code textarea. Save it, delete all caches and do Ctrl+F5 on forum-front (as logged out visitor / guest):
#wpf-msg-box #wpf-msg-box-p a {
color: #FFFFFF;
}
#wpf-msg-box #wpf-msg-box-p a:hover {
color: #FFFF99;
}
Thank you very much
That resolved my issue completely.