this post was submitted on 17 Jun 2023
160 points (100.0% liked)

/kbin meta

6 readers
1 users here now

Magazine dedicated to discussions about the kbin itself. Provide feedback, ask questions, suggest improvements, and engage in conversations related to the platform organization, policies, features, and community dynamics. ---- * Roadmap 2023 * m/kbinDevlog * m/kbinDesign

founded 1 year ago
 

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

you are viewing a single comment's thread
view the rest of the comments
[–] arkcom@kbin.social 6 points 1 year ago (1 children)

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;
}

[–] RheingoldRiver@kbin.social 4 points 1 year ago (1 children)

improved version:

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

[–] arkcom@kbin.social 2 points 1 year ago* (last edited 1 year ago)

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