View Full Version : alternative to frames
codejunkie
07-12-2005, 10:33 PM
I'm redesigning my website and looking for an alternative to frames. I have a more advanced version of the three page website and would like to have different pages embedded within the page you are viewing, but would like the text to wrap around it as well as interact with each other. For instance, I'd have a nav bar on the left, header on top, and misc. content on the right, then have a main frame/page in the center, but I'd have a different page for all of them. I know this can be done in CSS, but if there are any other alternatives I haven't come across them yet. Any suggestion?
You can't, really. Server-side includes are your best option here. The only other way is to use
<object name="embed1" type="text/html" height="450" width="450" border="0" data="http://www.google.com/"></object>
... for IE4+, and
<layer id="embed1" src="http://www.google.com/" bgcolor="#00ff00" width="500" height="450" top="10" left="270" visibility="show"></layer>
... for NS4.
However, using browser-specific techniques is never a good idea.
codejunkie
07-13-2005, 08:38 PM
do you know if there is a way to do it in css? i saw one method using squares, i guess i could work on that, but i was hoping for maybe a way to do it in flash or with a page design program and edit the rest in code. see i could do it using the squares with css but i dont think i could align them from the top without using tables. any suggestions?
You can't, as far as I know, include a page with CSS.
I may be wrong, if you insist that this is possible, but I would think it contrary to the idea of CSS, which was to seperate the content from the appearance.
I don't know anything about Flash; there may be a way to read and render a page, there may not.
Powered by vBulletin® Version 4.2.2 Copyright © 2021 vBulletin Solutions, Inc. All rights reserved.