bleakexit
07-05-2003, 03:12 PM
I have my site (http://journal.bleak-existence.net/) done in tables. I know now I should have done it in frames but is there any way I could make my main text area scrollable?It seems like it would be easy but I'm new to tables.thanks for any help:)
David Harrison
07-05-2003, 04:06 PM
In the td element that you want to scroll, rather than making the td scroll, make it look as if it is scrolling by using iframes.
to do this use this code:
<iframe src="page.html" name="name" width="x" height="x">Text that should appear in case the browser does not support iframes</iframe>
where:
*page.html is the page that you want to load, ie: just the content in a different window.
*name is the name of the iframe.
*width and height, you'll have to figure out for yourself.