To Change Color For Background of Headings Goto Design>>Edit Html>>
/* Headings
----------------------------------------------- */
h2 {
background-color:#0000ff; /*<---Add this line*/
}
Substitute the hexadecimal number as before.
BACKGROUND IMAGE. TO add a background image add this line where you want to add the image. Here we have added it to the body.
BODY {
background-image: url(URL LINK OF IMAGE); /*<---Add this line*/
}
To change the background color add this line to the body code above:
background-color:#009900;
Choose a hex color code here http://www.asahi-net.or.jp/~FX6M-FJMY/java09e.html to replace 009900 in above code.
Replace the CAPS with the location on the web where you have uploaded your image.