My CSS style is causing my background image to span across the whole screen instead of repeating within the 960px width of the body.
body
{
width:960px;
margin: 10px auto 10px auto;
background-image:url(logo.png),url(backgroundimage.jpg);
background-position: top center, top center;
background-repeat: no-repeat, repeat-x;
background-attachment: static;
}
The image logo.png represents a company logo, while backgroundimage.jpg should only span within the 960px width instead of filling the entire page. How can I achieve this?