How do I add a background image or change the background color of my forum?
First, read this thread:
http://support.lefora.com/2008/06/19/hacking-your-css/page1/
For a black background:
#page {background-color: #000000;}
For a white background:
#page {background-color: #FFFFFF;}
For any color in between, just get the HEX value from this site:
http://www.colorpicker.com/
For a background image, upload your image to a site like photoshack.com, then use:
#page {background-image: url(http://your-image-url-here.com/filename.jpg)}

