I am trying to add a full page image to the twenty ten theme however it keeps tiling the image how can I make the image full page image?
I am trying to add a full page image to the twenty ten theme however it keeps tiling the image how can I make the image full page image?
Hi,
In your style.css you have the following
body {
background-attachment: fixed;
background-image: url("http://valleyspringchurch.com/bulletin/wp-content/uploads/2012/10/wheat_backgroun.jpg");
}
just add background-size:cover; so it will look like this in the code
body {
background-attachment: fixed;
background-image: url("http://valleyspringchurch.com/bulletin/wp-content/uploads/2012/10/wheat_backgroun.jpg");
background-size: cover;
}
That should give you the effect your after.
Cheers
J
HI
thank you for the reply and the information it worked great.
now I am faced with another issue and its driving me crazy
I have created a post on one of my other sites but the page is blank
I though it was because the color was white but when I view the source it only shows <html></html> any Idea's
Is that a WordPress website?
yes it is a wordpress site
You must log in to post.