Forum Moderators: open
If you were to use traditional frames you can make any frame you create scrollable or not. Some Example code from a site.
Insert your own column widths where the XXX are. Note the * on the second colum indicates flexible width.
Insert your own frame names where I have framename1 etc
Insert your own path to html frame contents files where I have put filename1.htm etc
and colour variables etc etc
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
<HTML>
<HEAD>Page title</HEAD>
<FRAMESET COLS="XXX,XXX*" FRAMESPACING="0" BORDER="0" FRAMEBORDER="NO" BORDERCOLOR="#whatever">
<FRAME SRC="../dir/filename1.htm" NAME="framename1" SCROLLING="NO" MARGINWIDTH="X" MARGINHEIGHT="X">
<FRAME SRC="filename2.htm" NAME="framename2" FRAMEBORDER="NO">
<NOFRAMES>put your noframes contents in here</NOFRAMES>
</FRAMESET>
</HTML>
You can see that the SCROLLING="NO" command disables scrolling in the first coloumn created on that page .. in the third as I recall scrolling was automatic as needed. I think I recall that you can force it always on. Experiment or look it up in the references.
Hope that helps