Please, help me hide the Statistics widget on tablet screen in portrait mode 😢
I managed to hide it in tags page with this code and works:
.TagsPage-nav .item-forumStatisticsWidget {
display: none!important;
}
And hidden on phone with this:
@media @phone {
.item-forumStatisticsWidget {
display: none;
}
}
Still I have no clue on how to hide it on discussions page on ipad (not landscape!). Can someone help?