Hi,
I added a scroll bar in div with a fixed height using css as follows:
#container {
width: 1000px;
margin: 0px auto;
}
#content {
background-position: 190px 0px;
}
.central-content {
padding: 0 1px 15px 1px;
min-height: 500px;
max-height: 500px;
overflow: auto;
}
It works ok, but the problem is when I scroll down the picture up there also follows, and it overlaps pictures below. However, when I scroll up, the picture below do not go up. Only pictures on the top. Why? How can I fix it?