• 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

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