Click to See Complete Forum and Search --> : scroll bars and frames


damon2003
11-23-2003, 02:50 PM
Hi, I have a page made with frames. One top frame, one middle and one bottom. Depending on the hieght of the middle frame, scroll bars appear which is fine. The problem is they also appear along the top of the bottom frame. How can I get rid of the horizontal scroll bars while maintaining the vertical ones?
thanks

<frameset rows="108,*,16" frameborder="NO" border="0" framespacing="0" >
<frame src="top.htm" name="topFrame" scrolling="NO" noresize >
<frame src="main.php" name="mainFrame">
<frame src="bottom.htm" name="bottomFrame" scrolling="NO" noresize>
</frameset>
<noframes><body leftmargin="0" topmargin="0" rightmargin="0" bottommargin="0">
</body></noframes>

PeOfEo
11-23-2003, 10:27 PM
forget the scrolling = no stuff. Just do all of your widths in %s then the page will resize and fit the window. scrolling=no is not even valid html. If that fails resort to this proprietary code
style="overflow-x:hide;" but that is ie only, you would put that in the frameset frame tag, or the body tag. I dont know which so try them both. I have never used that code with regular frames.