:clap:WOW, it worked perfectly :clap:
This is what I did:
Used the Firefox Element Information to find the class.
(you just taught me that a few days ago:blush:).
In this case it was named main_block.
Went to my css stylesheet and added this code:
.main_block {
height: 550px; overflow-y:scroll;
}
and the attached picture is the result. Exactly what I wanted.
Thanks so much. I thought it was going to be much harder with alot of coding to make this happen, yet it was so simple.....:D
Thanks again,
lj
gjh42:
You may be able to achieve your design purpose with the CSS property "overflow".
Set a fixed height for the center column, and give it
overflow: auto;
or
overflow: scroll;
and the box contents will have a scrollbar that allows all the content to be accessible. Auto only shows the scrollbar where needed while scroll always shows both scrollbars for predictability.