• 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.
    • We recommend purchasing a Chevereto license to participate in this community.
    • Purchase a Community Subscription to get even faster ticket response times.
  • Chevereto Support CLST

    Support response

    Support checklist

    • Got a Something went wrong message? Read this guide and provide the actual error. Do not skip this.
    • Confirm that the server meets the System Requirements
    • Check for any available Hotfix - your issue could be already reported/fixed
    • Read documentation - It will be required to Debug and understand Errors for a faster support response

User-image position is wrong when using a super wide monitor

koxle

Chevereto Member
Reproduction steps

Use a super wide monitor to browse user page

Unexpected result


1748241778588.png

The user-image position goes wrong which cover the tag and the "Files"
I find this error will appear when the html class use "largescreen" replace the "desktop" when the page width is more the 2180.
Looks like css mis configured.
 
added below script at peafowl.css and peafoel.min.css as temp solutions.

@media (min-width: 2180px) {
.largescreen .top-user:not(.no-background) .top-user-avatar {
top: calc(-0.4em - 10px);
}
}
 
Back
Top