I'm having an issue with setting a background image as a wrapper for the main content of my page.
Currently, I've set the background image like this:
#background {
background: url("../image/bg.png") repeat-y 133px 50px;
color: #000000;
font-family: Arial,Helvetica,sans-serif;
margin: 0;
padding: 0;
}
Despite specifying that the image should be positioned 133px from the left and 50px from the top, it appears flush against the top of the browser instead.
Does anyone have any insights into why this is happening?
Thank you
Is it possible to achieve this type of positioning when using repeat-y
for the image?
Thank you