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

Support?

bretteo

Chevereto Noob
Ok so im new to CSS and was wondering if anyone can help me find the section of the CSS file where i can change the white background,

14ahfvd.png


I have tried to edit this line

Code:
body, html {
    background: #FFF url(site-img/body_bkg_default.png) repeat-x;
    font-family: Helvetica, Arial, sans-serif;
    padding: 0; margin: 0;
    color: #FFF;
    }

but it did not work for me, but this is the color i am trying to make the background, #a4a4a4
i am also wondering, most of the color codes are 3 digits not 6 ??

Any help would be great.

Thankyou
 
#FFF = #FFFFFF

CSS:
body, html {
    background: #a4a4a4;
    font-family: Helvetica, Arial, sans-serif;
    padding: 0; margin: 0;
    color: #FFF;
    }
 
Back
Top