• Welcome to the Chevereto user community!

    Here users from all over the world gather around to learn the latest about Chevereto and contribute with ideas to improve the software.

    Please keep in mind:

    • 😌 This community is user driven. Be polite with other users.
    • 👉 Is required to purchase a Chevereto license to participate in this community (doesn't apply to Pre-sales).
    • 💸 Purchase a Pro Subscription to get access to active software support and faster ticket response times.

Can the NFSW blur be increased?

Add this CSS in dashboard/settings/theme

CSS:
.unsafe-blur-on [data-flag=unsafe] .list-item-image .image-container,
.unsafe-blur-on .list-item .list-item-thumbs li[data-flag=unsafe] a {
    filter: blur(10px);
    -webkit-filter: blur(10px);
    -webkit-transform: scale(1.04);
    transform: scale(1.04);
}
 
As far as I am aware, system doesn't have any default settings that you can change. However, you can fiddle with CSS files that set the blur on your webserver.

You can add an override, so any changes you make doesn't get overwritten with updates. See this page for more details - https://chevereto.com/docs/theme
 
Back
Top