Yes. You add this:
Code:
// hide post counts in all the threads for Ank?ndigungen forum
.page249 .b-userinfo__additional-info-block .b-userinfo_aadditional-info:nth-child(2) {
display: none;
}
Each page in the forum has a unique page id in the <body> class. In the case of Ank?ndigungen forum page, it has page249 in the body class. You can find it by inspecting the page (right click > Inspect) and looking for the <body> tag.
Btw, my initial suggestion of hiding the post count in the forum list is not good. Here's the better one. Replace the original CSS with this one.
Code:
#forum136 .posts-count,
#forum186 .posts-count,
#forum119 .posts-count,
#forum120 .posts-count,
#forum121 .posts-count,
#forum124 .posts-count,
#forum125 .posts-count,
#forum138 .posts-count,
#forum187 .posts-count {
position: relative;
}
#forum136 .posts-count:before,
#forum186 .posts-count:before,
#forum119 .posts-count:before,
#forum120 .posts-count:before,
#forum121 .posts-count:before,
#forum124 .posts-count:before,
#forum125 .posts-count:before,
#forum138 .posts-count:before,
#forum187 .posts-count:before {
content: '';
position: absolute;
left: 0;
top: 0;
display: block;
width: 100%;
height: 100%;
z-index: 1;
background: {vb:stylevar content_background};
}