Notifications
Clear all

wpForo 1.x.x [Closed] How to remove folder icon

5 Posts
3 Users
0 Likes
1,690 Views
Posts: 7
Topic starter
(@cadred)
Active Member
Joined: 7 years ago

Hello,

How do I remove the giant Folder Icon in the title bar? 

Your forum bars are much thinner than mine. Why is that? 

Thank you,

Simon

4 Replies
Posts: 316
(@1sharonkat)
Reputable Member
Joined: 7 years ago

As for your second question, sometime ago Robert suggested me to add these 2 lines in the style tab:

to change the height of the dividing line

#wpforo #wpforo-wrap .wpfl-1 .wpforo-category {padding:2px 12px;}

#wpforo #wpforo-wrap .wpfl-1 .wpforo-forum-description {padding:0;}  

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

This is not wpForo icons, why you have such icons in category panels? have you made any changes in template files? If this is not your code, then this comes from other plugins or theme. I'd recommend deactivate all plugins and test it again. If it doesn't help please leave some URL to your forum.

1 Reply
(@cadred)
Joined: 7 years ago

Active Member
Posts: 7

Thank you for your reply. 

I tried turning off plugins but it did not work. 

My forum is located at  http://members.drawingnewyork.com/community/

Thank you for any help. 

Simon

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

You've not done a carefully test or you have not properly refresh front-end after plugin deactivation. Because this problem comes from a plugin called Multiverso. This plugin has a CSS code in multiverso/css/style.css file which adds folder icon and changes category title font.

It's not recommended to edit plugin files so it would be better to use a small CSS code to adapt wpForo category titles. Please navigate to Dashboard > Forums > Settings > Styles admin page, put this CSS code in Custom CSS Code textarea, then save it, delete all caches and do Ctrl+F5 on forum front:

#wpforo #wpforo-wrap .cat-title {
    background: none!important;
    font-size: inherit!important;
    font-weight: normal!important;
    line-height: inherit!important;
    margin: inherit!important;
    padding-left: inherit!important;
}