ok, to use a horizontal scrollbar: use this body tag for the file that is displayed in your frame. so if you display xxx.html in your iframe, open that file and put this as body tag:
CODE
<body style="background-color:transparent; overflow:auto;">
that will make sure that you have automatic wordwrap, the vertical scrollbar will apear when it's needed. ofcourse, when there is a very long word in the text, that's to wide to be displayed in the frame, you'll get a horizontal scrollbar as well.
to disable the horizontal scrollbar, add this to the <head> section of your html document
CODE
<script language="JavaScript">
document.body.style.overflowX ='hidden';
</script>
this will prevent hor. scrollbars, but keep in mint that, when using a too long word, they won't be able to read the rest of the word anymore!
you can do the same for the vertical scrollbars: overflowY='hidden'
but if you want to hide both, you can skip the javascript and just set overflow="hidden" in your body tag
other options for the overflow property in the body tag:
visible: will not show scrollbars, but the text will be diplayed outside your page!
scroll: will always show a scrollbar
Comment/Reply (w/o sign-up)