• 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.
    • We recommend purchasing a Chevereto license to participate in this community.
    • Purchase a Community Subscription to get even faster ticket response times.

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