Please follow the steps below to change the CSS for the background:
1. Open the “basic-style.css” file using Notepad. The file is located in the “templates/default/css”
2. Locate the code below:
body {
background-color: #FFF;
color: #777;
}
Directly update the CSS inside the body { } to reflect your own background style. You need to be familiar with CSS in order to update this.
For more information about CSS, please refer to:
http://www.w3schools.com/Css/default.asp
For example, if you wish to change the background of the site to use a dark grey color instead of the default background, which is white (FFF), then please update the CSS to:
body {
background-color: #333333;
color: #777;
}
3. Save the file and upload to the “templates/default/css” folder.