I have some Jquery/CSS web pages which dynamically take into account screen width and then positions the DIV cells either as 1 column or 2 column. Adding a new cell is as simple as creating a new DIV and the page formats itself accordingly.
My main issue is that I cannot show a vertical scrollbar. While I know that I can use my mouse wheel to scroll down, the site owner wants a vertical scrollbar so that others may know as well. There are tons of examples of Jquery vertical scrollbars out there, but they all require setting a height or a maxheight, which I cannot set because the page handles its own formatting.
An example of one of the pages is here: Example
Is there any way I can get a vertical scrollbar onto this page that would produce the same results as it currntly does simply using the mouse wheel
Thanks!