Notifications
Clear all

wpForo 1.x.x [Closed] How to make links underlined automatically?

4 Posts
2 Users
1 Reactions
950 Views
spider
Posts: 58
Topic starter
(@spider)
Trusted Member
Joined: 7 years ago

For example; wpforo homepage

Links are in automatically in different color but they are still not visible enough. While in editor it's underlined and very nice like that. Can we keep it as underlined after we post it too? I wanted to do it via css file but couldn't figure it out the right value.

Topic Tags
3 Replies
Robert
Posts: 10587
Admin
(@robert)
Support Team
Joined: 9 years ago

Hi @spider,

You can set any color to forum links by changing the #15 color of your active Style in Dashboard > Forums > Settings > Styles admin page. Don't forget delete all caches, navigate to forum front-end and pres Ctrl+F5 to reset browser cache.

2 Replies
spider
(@spider)
Joined: 7 years ago

Trusted Member
Posts: 58

@robert Thanks but this changes all the links. Now I realized that I didn't ask correctly.

I want to change the style of external links. Only external ones. Can we do that?

Robert
Admin
(@robert)
Joined: 9 years ago

Support Team
Posts: 10587

@spider,

You can change the color of links in post content using this CSS code:

#wpforo #wpforo-wrap .wpforo-post-content a {
     color: #3f7796;
}
#wpforo #wpforo-wrap .wpforo-post-content a:hover {
    color: #2584b9;
}

Don't forget delete all caches and press Ctrl+F5 on forum front-end to reset browser cache.