Notifications
Clear all

wpForo 1.x.x [Closed] Color 14 Changing main font color

2 Posts
2 Users
0 Likes
1,593 Views
Posts: 7
Topic starter
(@awsome-dudes)
Active Member
Joined: 7 years ago

Hey all,

      from my understanding, manually adjusting the color for line 14 should change the color of a visited link, however it is changing all of my post color as well. Im trying to set all hyperlinks to be green, regardless of whether they've been visited or not, currently when you visit a link it sets the color to the default font color which makes them impossible to see after they've been visited.

1 Reply
Robert
Posts: 10499
Admin
(@robert)
Support Team
Joined: 8 years ago

This color is used for link buttons. Please set it default and just change the whole style to the Green style, it'll change the link colors as well. In case you only want to change link colors you should use the #11 (default, visited) and #15 (hover) colors. For more specific change of link colors you should use this CSS code:

.wpfcl-a{color:#008000;}
#wpforo #wpforo-wrap a:hover{color:#008000;}
#wpforo #wpforo-wrap a:active {color:#008000;}
#wpforo #wpforo-wrap a { color:#008000; }
#wpforo #wpforo-wrap a:visited { color:#008000; }

Put this CSS code in Dashboard > Forums > Settings > Styles > Custom CSS Textarea. Delete all caches and do Ctrl+F5 on forum page.