Scroll bar and categorized web view

I cannot get the scroll bar to appear for my embedded categorized view. I have $$viewbody on my form. The view is controlled by a Css. When I expand the category, some of the documents do not show. If I display them using a embedded view via an applet I see all of the documents. I don’t want to use an applet. Any ideas how I can get the scroll bar. Below is the code that I have around the viewbody. Thanks for your help.

$$viewbody

Subject: Scroll bar and categorized web view

Overflow-y only allows a vertical scroll bar. Overflow-x controls the horizontal. Since you want both, use “overflow: auto”.

Subject: Scroll bar and categorized view. Not working

Thanks Stan for your help, but I am still having problems. I made you requested changes and the scroll bar does appear. When I click on the twistie, the category is expanded but there is no vertical scroll bar only a horizontal. Below is the code that wraps around my $$viewbody. Thanks again for your help.

Subject: RE: Scroll bar and categorized view. Not working

Don’t use x OR y, just overflow: auto.

overflow-x: auto generates a horzontal scroll bar if necessary.

overflow-y: auto generates a vertical scroll bar if necessary

overflow: auto generates both.