I'm moving my personal web site from a frame layout to CSS, primarily as a learning experience for me as I was quite happy with the way the frame layout functioned. I'm fairly satisfied with how it's going, but I have one problem I can't find a solution for.
The frame layout was pretty standard: a title frame, a menu and other sub-frames down the left side, and the bulk of the page left for a frame filling the lower right of the page with whatever main content was selected from the menu. This worked fine as the main content frame was the default (*) size and would adjust to fill the browser window, regardless of window size.
The problem is that the main content was often a separate URL - for a guestbook, a photo display app, or my blog on blogspot.com. I can create the main content section in CSS, and it works fine as long as I am using direct HTML into that div. However, the only way I have found to include the external URLs as an option in the main content area in CSS is to put them in an iframe, and it appears that an iframe must have a static size declared. So I no longer have the capability of this content resizing to fill any browser window size.
So the question is: with CSS is there a way to include an external URL as part of the page being presented and also having the display of this URL dynamically adjust to the user's browser window size?
Thanks for your help!
- Cowshill