• 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.
  • 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

Changing site color in 3 steps

SMP

💖 Chevereto Fan
If you are not satisfied with the default color options, follow the below to change the look of your site...

Step 1)

Choose the color

Lets for example take the green color this forum/community

Its RGB color code is rgb(107, 166, 94) now convert it to Hex color code which is #6BA65E

To convert RGB to Hex code use >>> rgbtohex.net

To convert Hex to RGB code use >>> rgbtohex.nett/hextorgb/


Step 2)

Go to your dashboard/admin panel >> settings >> theme

yoursitename/dashboard/settings/theme

In main color code box add the Hex color code

here in out case #6BA65E

and select Top bar color as black


Step 3)

In Custom CSS code box add the following code

Note: Change #6BA65E and 107, 166, 94 with your color codes.

Code:
.top-bar, .tone-dark .follow-scroll-wrapper.position-fixed {
    background-color: #6BA65E;
    background-color: rgba(107, 166, 94,.87);
}
.top-bar {
    box-shadow: 0 0 5px 0 rgba(107, 166, 94,.25);
}
#image .top-bar.transparent {
    background: #6BA65E;
    box-shadow: 0 0 5px 0 rgba(107, 166, 94,.25);
}
.image-viewer.full-viewer, #image .top-bar-placeholder {
    background: #F3F3F3;
}
#top-bar-user .default-user-image {
    background: none;
}

and hit save


For our example it looks...

Capture.JPG
 
Back
Top