I am struggling to correctly write the code to display the background image in this page only once, without repeating, and centered about 500px down the page. I tried something like "background-image: norepeat" but it didn't work. I looked at the W3C page for guidance but ended up breaking the image completely.
Below is the CSS snippet:
#wrapper {
width: 700px;
margin: 0 auto;
background-color: #d7fdc9;
padding-top: 20px;
padding-bottom: 20px;
background-image: url(../images/bkgd-image.gif);
}
I'm not sure if you need the full HTML and CSS code, so I just provided a small section. Let me know if you need more information.
If you require the complete code, please let me know, and I will gladly provide it. Thank you!