You can change the homepage dashboard background by editing /templates/tapthemeiphone/css/template.css
and changing:
body.homePage {
background: none repeat scroll 0 0 #000000;
}
to something like:
body.homePage {
background: url(../images/image.png) no-repeat 0 0;
}
In this example:
- the image is named image.png
- the image is uploaded to /templates/tapthemeiphone/images/
- the image doesn't repeat (use repeat-x or repeat-y if you want it to repeat horizontally or vertically)