Sep 06, 2019 6:41 am
Hi, would any kind member know what CSS code would be to required to remove the "Online" and its number element, from displaying in the forum footer statistics.
2 Replies
Sep 06, 2019 7:53 am
Hi @cmw14,
Use the following CSS code if you want to hade the "Online members" section.
#wpforo #wpforo-wrap #wpforo-stat-body .wpf-stat-item:nth-child(4) {
display: none;
}
The CSS below allows you to center elements in the statistic.
#wpforo #wpforo-wrap #wpforo-stat-body .wpf-stat-data {
display: flex;
justify-content: center;
}
The CSS code should be added in the "Custom CSS Code" textarea, located in the Dashboard > Forums > Settings > Styles admin page.
Please don't forget to delete all caches before checking.
Sep 06, 2019 8:00 am
Wonderful, thanks very much Sofy 👍