Limited Support
Our support team is currently on holiday from December 25, 2025 to January 7, 2026, and replies may be delayed during this period.
We appreciate your patience and understanding while our team is away. Thank you for being part of the wpForo community!
Merry Christmas and Happy Holidays! 🎄
Hey Guys,
Can someone please help me, I want to change the color (active, hover, visited) of hyperlinks inside a Post/Topic without affecting all the other links elements in the forum!
I have tried this, but it affects also Topics titles and that's not what I want:
.wpfcl-a{color:#F99245;}
#wpforo #wpforo-wrap a:hover{color:#0078D7;}
#wpforo #wpforo-wrap a:active {color:#0078D7;}
#wpforo #wpforo-wrap a { color:#F99245; }
#wpforo #wpforo-wrap a:visited { color:#0078D7; }
#wpforo #wpforo-wrap a {text-decoration: none;}
Is it possible to targat ONLY the hyperlinks inside a Post/Topic description?
Thanks.
Hi @beyondforce,
Please remove that CSS code, and make sure it's removed from cache too. Then use this CSS code:
#wpforo #wpforo-wrap .wpforo-post-content a { color:#F99245; }
#wpforo #wpforo-wrap .wpforo-post-content a:hover{color:#0078D7;}
#wpforo #wpforo-wrap .wpforo-post-content a:active {color:#0078D7;}
#wpforo #wpforo-wrap .wpforo-post-content a:visited { color:#0078D7; }
Hi @Robert, thanks it working 🙂
But I have noticed some else really odd... If I take out this line "#wpforo #wpforo-wrap .wpforo-post-content a:active {color:#0078D7;}" then suddenly the Category widget is showing up to the left of the Recent Posts widget.
Do you know why is it happening? Or how I can disable/hide this Category widget?