
August 26th, 2003
05:31 AM
Iframes? N33d HELP
can someone really help me out on iframe, Im doing a website which I want the menu on the left and the content on the right like other sites u've seen before but I need someone to explain me how to do it step by step. I would really appreciate it///thanks;)
___________________
(Hear me out now)
(You are gonna listen to me like it or not)

August 26th, 2003
06:31 AM
online since 96
Status: Offline!
Best advice: find a site that uses the i-frames you like, check their code and re-create it yourself!!
___________________
...a post by Tobias from 

August 26th, 2003
07:24 AM
Either use tables (if you really have to), or position them with CSS.
Although, I'd suggest doing what AljapaCo suggested and check out the code, and make it yourself. 
___________________


August 26th, 2003
11:53 AM
well, i'd have to see the site first to know what you want. i use iframes a lot, since i think they're pretty nifty and all.
i'd write some code for you but if you can show me a website or template or something, it'd be a lot easier.
for iframes you just type
<iframe src="pageinsideiframe.html" name="whatever"></iframe>

August 26th, 2003
04:00 PM
online since 96
Status: Offline!
Here a an i-frame set I've used some time ago... feel free to modify and use it 
<iframe id="content" name="content" src="inner.asp" width="558" height="396" marginwidth="0" marginheight="0" hspace="0" vspace="0" frameborder="0" scrolling="auto">
--- text to use for browsers that doesn't support i-frames---</iframe>
___________________
...a post by Tobias from 

August 26th, 2003
09:58 PM
loves kitties and cuddles
Status: Offline!
IFrames are not XHTML compliant.
I recommend you use a DIV that scrolls, to do this, just use
<div style="overflow:auto; height: 500px; width: 400px;">
Put all your content here
</div>
You must specify a height and width. Scrollbars will appear if the content goes over the height/width.
___________________
I've got a girlfriend! WOOT.

August 27th, 2003
10:41 AM
online since 96
Status: Offline!
Originally posted by JeffSquared
IFrames are not XHTML compliant.
I recommend you use a DIV that scrolls
::classic: for example and more explaining, see http://www.aljapaco.com/award/?val=articles&number=19#008
___________________
...a post by Tobias from 