How to remove sidebar sections from a magazine I moderate? (solved)

a-man-from-earth@kbin.social to /kbin meta@kbin.social – 1 points –

I moderate the men magazine, and we get spammed with gay porn in the sidebar, which is often not labeled as NSFW. (I have nothing against gays or porn, but it is not appropriate for a serious discussion community.) I have tried to hide those sections thru the magazine CSS, but it does not seem to work.

Any help here? Or is this not possible at the magazine level?

4

You are viewing a single comment

Have you tested that? Because it doesn't work on my end.

yes i have tested it and it does work for me.

try this

section.posts.section {
    filter: blur(3px) !important;
    transition: filter 0.3s ease;
}

section.posts.section:hover {
   filter: blur(0px) !important;
}

And the display: none? That's what I want, but weirdly it's not working on my magazine.

are you wanting both related threads and related posts gone? or which?