scroll bars and frames

liunx

Guest
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?<br />
thanks<br />
<br />
<frameset rows="108,*,16" frameborder="NO" border="0" framespacing="0" ><br />
<frame src=http://www.webdeveloper.com/forum/archive/index.php/"top.htm" name="topFrame" scrolling="NO" noresize ><br />
<frame src=http://www.webdeveloper.com/forum/archive/index.php/"main.php" name="mainFrame"><br />
<frame src=http://www.webdeveloper.com/forum/archive/index.php/"bottom.htm" name="bottomFrame" scrolling="NO" noresize><br />
</frameset><br />
<noframes><body leftmargin="0" topmargin="0" rightmargin="0" bottommargin="0"><br />
</body></noframes><!--content-->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<br />
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.<!--content-->
 
Back
Top