So I'm using this style here to center a div as a background:
#example{
z-index:-1;
width: 950px;
height:100%;
position:fixed;
background-color:#F0F0F0;
background:url(images/main_background_sidebar.png) repeat-y top center;
top: 0px;
left: 50%;
margin-left: -475px;
}
That works fine, it stays centered and everything, but is there a way to stop it from staying centered if the page width is under 950 px? for example: if the browser window was only 800px wide, the left side of the background image would be stuck to the left side of the screen.