07-10-2011, 03:37 AM
Background is in global.css through the admin cpanel
If you use the advaned view like I always do, you'll see something like this I believe:
The image location should be in there, and if you want a new background, you'll have to replace the one it's pointing to with the one that you want as the background.
basic background image css goes like this:
And you can give it repeat options too.
If you use the advaned view like I always do, you'll see something like this I believe:
Code:
body {
}
The image location should be in there, and if you want a new background, you'll have to replace the one it's pointing to with the one that you want as the background.
basic background image css goes like this:
Code:
something {
background-image: url("PUT_URL_LOCATION_OF_IMAGE_HERE");
}
And you can give it repeat options too.