Notifications
Clear all

wpForo 1.x.x [Closed] Text Link Colors not changing

3 Posts
2 Users
0 Reactions
2,052 Views
NSH
Posts: 97
 NSH
Topic starter
(@studio500)
Estimable Member
Joined: 7 years ago

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.

2 Replies
Robert
Posts: 10591
Admin
(@robert)
Support Team
Joined: 9 years ago

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;
}
NSH
Posts: 97
 NSH
Topic starter
(@studio500)
Estimable Member
Joined: 7 years ago

Thank you very much

That resolved my issue completely.