• 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

Background

sebo1992

Chevereto Member
Hey,

Is there a way to change the color of the background? I am not the css pro, so I am just asking here.

Thanks,
Sebo
 
open : content/themes/yourTheme/style.css

find :

CSS:
body {
	background: url(./theme-img/bliss.png) no-repeat center top;
	color: #333;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 15px;
	line-height: 120%;
}

replace with : (where 000000 is your color, you can google rbg color for more information or picking the right color you desire)
CSS:
body {
	background: url(./theme-img/bliss.png) no-repeat center top;
	background-color: #000000;
	color: #333;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 15px;
	line-height: 120%;
}

Except that the blue to white degrade is an image, so you need to edit it with something like photoshop.
 
If you want to change the gradient you must edit this on the CSS:

CSS:
html {
	background: url(./theme-img/background.png) repeat-x;
}
 
Back
Top