The easiest way is changing this:
body {
background:#000000 url(images/bgbody.jpg) no-repeat scroll center top;
font-family:trebuchet ms,arial,helvetica,sans-serif;
margin:0;
padding:0 0 15px;
text-align:center;
}
into this:
body {
background:#000000 url(images/bgbody.jpg) repeat-y scroll center top;
font-family:trebuchet ms,arial,helvetica,sans-serif;
margin:0;
padding:0 0 15px;
text-align:center;
}
In your stylesheet (style.css), but it doesn’t give the result you desire (I think at least). The image is fading to black, so you would have to cut a piece of the background image, and make it tiling.
Peter
Thanks For Trying.
Actually Due To The Fading.
The Lower Parts Are Just Too Boring.
So Thought If Upper Part Could Be Tiled.
Thanks.
Anybody Else Who Can Help.
Waiting For Esmi.
Regards
I’m flattered but pboosten’s absolutely right. Pixel’s a really nice looking theme but very difficult to customise graphically. The only option I can think of is to add a background image to html:
html {background:#000 url(images/another_image.jpg) repeat-y top left;}
Then remove #000000 from the body to let the html background show through. If you grabbed a slice of the lower part of the current background – including some of the black – doubled the image height, added a flipped copy of your slice and saved that as your html background image, that might just work.