Here is the CSS code I am using for the #Wall div:
#Wall {
z-index:0;
position: absolute;
left: 50%;
top: 0px;
margin-left: -952px;
width: 1920px;
height: 1200px;
overflow: hidden;
}
This code creates a clickable wallpaper advertising image. However, there is an issue with the overflow function as the browser displays a horizontal scroll bar for part of the image. How can this be fixed to hide the section of the image that should only be visible on higher resolution screens?