1. Go to your
control panel2. Click
Main Settings3. Scroll down and you will see a new section called
Custom CSS Settings.
4. Copy and paste the code below:
<style type="text/css">
body{
background-image:url(YOUR BACKGROUND ADDRESS);
}
</style>
And replace
YOUR BACKGROUND ADDRESS with the full path to your background image.
So for example it would look like this:
<style type="text/css">
body{
background-image:url(http://ls.xippy.org/images/bg.gif);
}
</style>
You can use a free host, something like
http://imageshack.us/, to host your background image.
There are other CSS codes you can use here, for example, changing the
background COLOUR:
<style type="text/css">
body{
background-color:COLOUR;
}
</style>
And replace
COLOUR with a HEX number eg #000000
or an RGB value eg rgb(0,0,0)
PM me if there are any problems!