There’s a few NSFW communities who keep getting advertised on the sidebar, showing an inappropriate photo. I don’t care to see it.
There’s a few NSFW communities who keep getting advertised on the sidebar, showing an inappropriate photo. I don’t care to see it.
I’d like to totally disable the sidebar. I don’t need random posts, especially if it’s this kinda stuff I don’t want to see.
I blocked the random crap using Ublock Origin. You can use the ublock picker tool to select the section of the page you’d like to hide.
problem is it also comes up in /all. which is the default landing page. So yeh, you have to reactively block communities, which still leaves you open to exposure unfortunately - lemmynsfw will certainly not be the last nsfw instance. not particularly nice when you’re just browsing /all when family walk in the room and there’s several thumbnails of females in compromising positions on your screen.
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; }