Any idea how to hide the category stats? I think the way to hide them has changed in recent versions.
.categoryStats{
display: none;
}
this no longer works.
thanks!
Any idea how to hide the category stats? I think the way to hide them has changed in recent versions.
.categoryStats{
display: none;
}
this no longer works.
thanks!
Your screenshot looks like you want to target those stats for subcategories. If that’s the case, this is the CSS you would use:
.category-list .subcategories .badge-notification.new-posts {
display: none;
}
Thank you, this does the trick!
This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.