How do I make a background image full page with CSS?

How do I make the background image of my tumblr page scroll with the posts?

  • I know there are lots of questions like this on here, but I've been trying for like an hour and I just don't understand any of it D: I want to make the background image not repeat when you scroll off the page, you know? I know i need to put something in the html coding here: body {background:{color:Background} url('{image:Background}');} But I have no idea what to write and where to put it. I'm so confused. Any advice would be greatly appreciated. Thanks.

  • Answer:

    Background Image Code: For the body tag example: body { width: XXXpx; height: YYYpx; /* optional */ margin: 0 auto; /* centers page */ background: #fff url(image_name.jpg) no-repeat center scroll; } That is the proper CSS code for a non-tiled image where the contents scroll with the background image. Change "#fff" to preferred bg color. Change "scroll" to "fixed" if you want page contents to scroll over bg image. Be sure to set proper width/height to provide minimum page size to display bg image. Put the CSS on an external CSS file. If using embedded CSS, then place CSS between the style tags and place those style tags between the head tags of the page. For a tiled image, change to: body { width: XXpx; height: YYpx; margin: 0 auto; background: #fff url(image_name.jpg) repeat top left scroll; } Put that CSS on an external CSS file if you have more than one page. Put the CSS between the style tags and place them between the head tags if using it on one page. Style another tag other than the body tag if you are using a div wrap container. Should you want the contents of page to scroll over the background image, change "scroll" to "fixed". Inline CSS example: <body style="width: 960px; margin: 0 auto; background: url(image.gif) no-repeat center fixed;"> Inline CSS example: <body style="width: 960px; margin: 0 auto; background: url(image.jpg) no-repeat center scroll;"> Ron

Kathy Jane at Yahoo! Answers Visit the source

Was this solution helpful to you?

Other answers

If you want the image to stay where it is you can add body{ background-color: #ffffff; background-image: url('images/image.jpg'); background-repeat:no-repeat; background-attachment:fixed;} That will need to go in your CSS file. Give that a go. Hope it helps.

Ben

Related Q & A:

Just Added Q & A:

Find solution

For every problem there is a solution! Proved by Solucija.

  • Got an issue and looking for advice?

  • Ask Solucija to search every corner of the Web for help.

  • Get workable solutions and helpful tips in a moment.

Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.