Edit style.css and change:
body {
background:#000000 url(images/bgbody.jpg) no-repeat center top;
font-family:trebuchet ms,arial,helvetica,sans-serif;
margin:0;
padding:0 0 15px;
text-align:center;
}
to
body {
background:#000000 url(images/bgbody.jpg) repeat-y center top;
font-family:trebuchet ms,arial,helvetica,sans-serif;
margin:0;
padding:0 0 15px;
text-align:center;
}
Thanks!
Thats exactly what i was looking for but, As the header is part of the whole thing it repeats the header too.. http://www.bluraybonanza.com I’m not sure on how i would seperate the two.
Hope you can help,
Thanks
You’d need to split the single image into 2 separate images – 1 80 px high image for the header, the 2nd for the body. If you called the 2nd image bgbody.jpg, the the CSS above will still work.
Call the 1st image header.jpg and upload it to your current theme’s images folder. Then change:
#header {
height:80px;
margin:0;
padding:0;
}
to
#header {
background:url(images/header.jpg) no-repeat center top;
height:80px;
margin:0;
padding:0;
}
in style.css. That should just about do it.
Thanks alot, I really appreciate it…
One last thing, The categories bar repeats aswell… I’m guessing this is just the same (Seperate it from the body) but what would i change in style.css?
Thanks (again)
Actually, I worked it out (Wasn’t that hard)..
The only thing i need to know now is how would i change it so theres no breaks in the part where the posts are, I’m guessing its to do with the way its repeating… Not sure on how i would fix it though..
how would i change it so theres no breaks in the part where the posts are
Sorry? I don’t follow you…