Click here to view my issue. I have set the background image to repeat the entire height, but it's not behaving as expected.
Here is my CSS
#wrapper {
margin: 0px;
padding: 0px;
background: url(img02.jpg) repeat-x left top;
}
I attempted to add these lines
body {
margin: 0;
padding: 0;
background: #F7F7F7 url(img01.jpg) repeat left top;
font-family: Georgia, "Times New Roman", Times, serif;
font-size: 14px;
color: #5A554E;
/* these lines were added*/
min-height:100%;
height:auto;
}
Nevertheless, the background image still does not repeat to the full height.