I've recently added an image as the background for my website using the following style:
#whole_wrapper{
background-image: url(../images/wrapper_bg.jpg);
background-repeat: repeat-x;
width: 100%;
float: left;
height: 116px;
}
While it displays perfectly in normal screen resolution, I've noticed that it doesn't repeat correctly when I resize the screen. Any suggestions on how to correct this issue?