Thursday, 03 February 2011 17:21

How do I change the background?

We get this question a lot. Here's the answer:

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)
Last modified on Monday, 26 March 2012 20:01