In the style.css file of your template you can find
Code: Select all
body{margin:0; padding:0; background-image:url(images/bg.png); background-repeat:repeat-x; font-family:Verdana, Geneva, Arial, Helvetica, sans-serif; font-size: 12px; color:#003399;}
Add
background-color:#FF0000; Where #FF0000 is the color of your choice.
so it looks like this
Code: Select all
body{margin:0; padding:0; background-image:url(images/bg.png); background-repeat:repeat-x; font-family:Verdana, Geneva, Arial, Helvetica, sans-serif; font-size: 12px; color:#003399; background-color:#FF0000;}
You also might have to replace the background image with one of your own. Change background-image:url(images/bg.png); to your own image or remove this text to see your background color also on the top of your page (it is a very high background image).
Greetings,
Henrie
I do not monitor the Gbook forums regularly anymore since I do not use the Gbook script myself anymore for a long time. But it helped me a lot in learning to understand php.