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?

  • minnieo@kbin.social
    link
    fedilink
    arrow-up
    0
    ·
    1 year ago

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