Notifications
Clear all

wpForo 1.x.x [Solved] Underlined links problem

5 Posts
3 Users
1 Likes
691 Views
Posts: 33
Topic starter
(@stan1z)
Trusted Member
Joined: 4 years ago

Hello,

Due to my main site design I use underlined links on forum. But there are some links with icons, that have a space between icon and link text, so this space is underlined and looks annoying. For example, links .wpf-profile-menu (Profile, Account, Activity, etc., see attechment), "Mark all read" link in bottom. How can I fix it?

4 Replies
Sofy
Posts: 4310
 Sofy
Admin
(@sofy)
Support Team
Joined: 6 years ago

Hi @stan1z,

This is a small conflict with the active theme. Just put the CSS code below in the "Custom CSS code" textarea, located in the Dashboard > Forums > Settings > Style Tab.  

#wpforo #wpforo-wrap .wpforo-profile-head .h-bottom a.wpf-profile-menu {
text-decoration: none !important;
}

Please don't forget to delete all caches and press Ctrl+F5 (twice) on the frontend before checking to reload the updated CSS file.    

3 Replies
(@stan1z)
Joined: 4 years ago

Trusted Member
Posts: 33

@sofy, thank you very much, it helped. And how to make bottom link "Mark all read" non-underlined? I tried in "Style" textarea this code, but it doesn't work:

#wpforo #wpforo-wrap .wpforo-stat-body .wpf-forum-icons .wpf-all-read a {
text-decoration: none !important;
}

 

Moderator
(@martin)
Joined: 8 years ago

Support Team
Posts: 986

@stan1z,

Try this. Then don't forget delete all caches, and press Ctrl+F5 on forum front-end:

#wpforo #wpforo-wrap #wpforo-stat-body .wpf-last-info p.wpf-forum-icons a{
       text-decoration: none !important;
}

 

(@stan1z)
Joined: 4 years ago

Trusted Member
Posts: 33

@martin It works, thank you!