• 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

change font color

Something like this?

Copy Paste this code to Custom CSS

Dashboard -> Settings -> Theme -> Custom CSS

Code:
#home-cover-content h1 {
    color: #3a3a3a;
}
#home-cover-content p {
    color: #3a3a3a;
}

.btn-text {
    color: #3a3a3a;
}

[class^="icon-"], [class*=" icon-"] {
    color: #3a3a3a;
}

#menu-fullscreen .btn.top-btn-create-account, .top-btn-text, .btn.top-btn-create-account:not(.grey):not(.white) {
    color: #3a3a3a;
}
 
Yep for most of the main page what tomsit said above, however this is more complicated than it looks. You'll also need to decide what you'll do with mobile menu, otherwise you'll have grey text on a black mobile menu.

Plus the down arrows will need changing, and if you use the search box then that'll need amending as well. 😉
 
Right click on elements in chrome -> inspect and find the css code for them, and import your changes to custom css.

OR

go for different background.
 
Back
Top