views:

88

answers:

1

I am using CKEditor (http://ckeditor.com) and I've created my own custom file browser...

Problem is, when you open the filebrowser, it opens it in a new popup window and has no scrollbars. I submitted a support ticket 2 weeks ago to find out how to add the scrollbars and no answer. I can't find what to edit in the code either...

So what I plan to do is make it scroll using CSS...

I found this post about making the body 100% (http://stackoverflow.com/questions/886809/css-quirks-html-4-01-strict-100-body-height-and-scrollbars) but it doesn't add scrollbars.

Any ideas how I can force scrollbars using CSS?

A: 

overflow:auto;

http://www.w3schools.com/Css/pr_pos_overflow.asp

Kyle