Can we stop showing NSFW subs on the sidebar?

52fighters@kbin.social to /kbin meta@kbin.social – 160 points –

There's a few NSFW communities who keep getting advertised on the sidebar, showing an inappropriate photo. I don't care to see it.

44

You are viewing a single comment

As a temp workaround, add the following css in stylus or stylbot for kbin.social to hide random posts and threads

section.posts.section {
display: none;
}

section.entries.section {
display: none;
}

improved version:

section.active-users.section,
section.posts.section,
section.entries.section {
display: none;
}

and my favorite (makes screen wider) -
.kbin-container { max-width: 90%; }