<object id="page" type="text/html"
data="index_test.html"
width="565" height="500">
<p>Oops! That didn't work...</p>
</object>
This is what I have and works in Firefox, but IE7 has scrollbars. How do I get rid of them?
<object id="page" type="text/html"
data="index_test.html"
width="565" height="500">
<p>Oops! That didn't work...</p>
</object>
This is what I have and works in Firefox, but IE7 has scrollbars. How do I get rid of them?
As much as it pains me to recommend it, render scroll="no" on the <body> tag. This will eliminate the default scrollbars in IE7. IE8 and other standard browsers can mark overflow:auto on the CSS for the body tag without needing scroll="no"
To clarify, add scroll="no" on the body tag in your index_test.html