I have the CSS below
html, body {
margin:0 0;
padding:0 0;
background:#444;
height:100%;
}
#page {
width: 900px;
margin: 0 0;
height:100%;
background: url(imgs/bk.png) repeat-y;
}
but it doesn't extend my background to the whole end of the layout, just shows my body background color of #444444
through.
Any help is appreciated please. The website is located at http://www.benfolio.net/new/
EDIT: SOLVED
I went out with sme mates and came back for a fresh look at it, first change I made fixed it, the change are below.
html, body {
margin:0 0;
padding:0 0;
background:#444;
}
#page {
width: 900px;
margin: 0 0;
height:100%;
background: url(imgs/bk.png) repeat-y;
overflow:hidden;
}
Simply took 'height:100%' out of the html,body section and it then defaulted to just 100% for the page div. Thanks for the help given