Spooonky Hey, can someone tell me how to disable it in the navbar but keep it active in the sidebar? (Css)
@media (min-width: 768px) and (max-width: 991px) {
.ForumStatistics {
display: none !important;
}
}
To hide the statistics on mobile as well:
@media (max-width: 767px) {
.ForumStatistics {
display: none !important;
}
}
It worked for me.
Spooonky