Scrollable tables?

I have my site (<!-- m --><a class="postlink" href="http://journal.bleak-existence.net/">http://journal.bleak-existence.net/</a><!-- m -->) 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:)<!--content-->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.<br />
<br />
to do this use this code:<br />
<br />
<iframe src=http://www.webdeveloper.com/forum/archive/index.php/"page.html" name="name" width="x" height="x">Text that should appear in case the browser does not support iframes</iframe><br />
<br />
where:<br />
*page.html is the page that you want to load, ie: just the content in a different window.<br />
*name is the name of the iframe.<br />
*width and height, you'll have to figure out for yourself.<!--content-->
 
Back
Top