010101 Question: is it possible to only show the last 5 (or whatever) badges using CSS? I'm a complete noob in CSS 😉.
.PostStream .badges>li:nth-child(n+5), .PostsUserPage .badges>li:nth-child(n+5) {
display:none;
}
Edit:
I've worked it out 😆
.PostStream .badges>li:nth-last-of-type(n+6), .PostsUserPage .badges>li:nth-last-of-type(n+6) {
display:none;
}