Notifications
Clear all

Limited Support

Our team is currently on holiday, so support will be limited during this period. Response times may be slower than usual, and some inquiries may be delayed.
We appreciate your patience and understanding, and we’ll resume our usual support by the end of August.

 

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

5 Posts
2 Users
3 Reactions
613 Views
Posts: 6
Topic starter
(@gorgiasunshine)
Active Member
Joined: 2 years 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: 396
Admin
(@blackraz)
Contributor
Joined: 9 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: 2 years 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: 9 years ago

Contributor
Posts: 396

@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: 2 years ago

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