Notifications
Clear all

[Solved] How Hide Only the Number of Members in Forum Footer ..... And

5 Posts
2 Users
3 Reactions
381 Views
Posts: 6
Topic starter
(@gorgiasunshine)
Active Member
Joined: 1 year ago

Hi All,

Can someone help me hide ONLY the number of members (the number count) in the footer on the first line? I want to center the text of that line and the footer in general, too, if possible.

Thanks in advance.

4 Replies
BlackRaz
Posts: 406
Admin
(@blackraz)
Contributor
Joined: 8 years ago

Hi  @gorgiasunshine 

You can add this CSS code into Custom CSS in the wpForo Settings page.
Dashboard > wpForo > Settings > Colors & Styles

#wpforo #wpforo-wrap #wpforo-footer .wpf-footer-box li:last-of-type{
    display: none !important;
}
#wpforo #wpforo-wrap #wpforo-footer .wpf-footer-box ul{
    justify-content: center !important;
}
2 Replies
(@gorgiasunshine)
Joined: 1 year ago

Active Member
Posts: 6

@blackraz Thank you so much! It worked nicely. Can the footer be centered as a whole?

BlackRaz
Admin
(@blackraz)
Joined: 8 years ago

Contributor
Posts: 406

@gorgiasunshine 
Please try adding this CSS code as well.

.wpf-footer-box:not(.wpf-last-info),
.wpf-footer-box > .wpf-forum-icons,
.wpf-footer-box > .wpf-topic-icons{
    display: flex;
    justify-content: center;
    align-items: center;
}
Posts: 6
Topic starter
(@gorgiasunshine)
Active Member
Joined: 1 year ago

Thank you so much! 😊 That did it just like I wanted it. I appreciate you taking the time and patience to help me.