I dont see any scrollbar because width and height don't work when you use * overflow:scroll *
Change this line... ( the first * #intro2 * line in your messy CSS )
Code: Select all
#intro2 {MARGIN:0px; PADDING-RIGHT:0px;PADDING-LEFT:0px;Left:195px; WIDTH:524px;HEIGHT:470px; TEXT-ALIGN: left; TOP:240px;COLOR: #111111;POSITION: absolute; Z-INDEX:7 ;FONT-SIZE: 16px;Font-weight:bold ;font-family: times new roman, times,serif;LINE-HEIGHT:17px;BACKGROUND-COLOR:transparent;overflow:scroll;}
to this.... (it will fix problem)
Code: Select all
#intro2 {
top : 240px;
left : 202px;
color : #111111;
width : 524px;
margin : 0px;
height : 460px;
z-index : 7;
overflow : auto;
position : absolute;
font-size : 16px;
text-align : left;
background : transparent;
line-height : 17px;
font-weight : bold;
font-family : times new roman, times,serif;
padding-left : 0px;
padding-right : 0px
}
As a side note, you got to many things assigned in your CSS that are not needed. I would do some reading so you understand when to use something and when not to. In other words you can achieve the same thing your doing with less than half of the CSS definitions you are currently using!
yj