question about iframes

just wondering if there is a way to turn off the scrolling in a iframe.. and if there is is there ant way to just disable one like the side to side but leave the vertical....<br />
<br />
here is the iframe code i am using <br />
<br />
<IFRAME name=news marginWidth=4 <br />
hspace=3px src=http://www.webdeveloper.com/forum/archive/index.php/"index8_files/news8.htm" frameBorder=0 width=395 <br />
height=389></IFRAME><!--content-->Well just make the page that opens inside the iframe fluid so that it resizes without creating a horizontal scroll bar, iframe scroll bars only appear when they are needed.<br />
You can use<br />
<body style="overflow-x:hidden;" on the page opening inside the frame to remove the horizontal scroll bar but that will hide the extra content and it only works in ie. I would just go with my first suggestion if I were you.<!--content-->
 
Back
Top