• Welcome to the Chevereto User Community!

    Here, users from all over the world come together to learn, share, and collaborate on everything related to Chevereto. It's a place to exchange ideas, ask questions, and help improve the software.

    Please keep in mind:

    • This community is user-driven. Always be polite and respectful to others.
    • Support development by purchasing a Chevereto license, which also gives you priority support.
    • Go further by joining the Community Subscription for even faster response times and to help sustain this space
  • 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

Howto: Change the color of the grey "blank space?"

anotherp

Chevereto Member
I have seen in other posts you mention the grey area that appears when images are too small for the defined area. A grey box is shown. Hopefully you know what I am talking about.

I am curious as to where to change the color for this. I know the color is set as: #FFF , but I cannot seem to find the exact spot.
 
Check the CSS selector then go to dashboard > theme and add your custom css.
 
Check the CSS selector then go to dashboard > theme and add your custom css.

Thank you for the reply, I tried this:

Code:
.list-item-image {
    background color: #474747;
}

But it didnt seem to work.

ALso not sure if I am going for the right DIV. I do believe it is list-item-image but I might be wrong.
 
it should be background-color, or just background without spaces.
 
I finally found the line of code I was looking for in peafowl.css

Code:
}
    .tone-dark .list-item-image, .tone-dark .list-item-thumbs, .tone-dark .list-item-thumbs li {
        background: #212121;
    }
 
Back
Top