Look at your home page. Notice that it has a scrollbar on the right side. That's because the content on that page is longer than the browser window.
The calendar page is missing that scrollbar because the content is NOT longer than the browser window. Any page that doesn't have a lot of content will do the same thing. It has nothing to do with the iframe.
To make a short page (such as the calendar page) have a scrollbar (whether it needs it or not) add this to the head section of the page:
Code:
<style type="text/css">
html {height: 100%; margin-bottom: 1px;}
</style>
Bookmarks