Forum Moderators: open
Boy, I am glad I found this forum!
I am working on a website: <Sorry, no personal URLs. See TOS [webmasterworld.com]>
The search engine you see is inside an iFrame. This looks and works exactly as I want, only when the IE window is resized, the iframe shrinks.
Oddly enough, this only happens when the width is resized, not the height. This also does not happen in FireFox.
Is there a way to keep this from happening?
Thanks a million!
Kevin Lingofelter
[edited by: tedster at 5:14 pm (utc) on July 25, 2004]
Is the width of your iframe a percentage
ie.<iframe src="search.html" width="10%"></iframe>
if it is then the iframes width is proportional to the browsers width...
to stop this you can simply specify the width in pixels ie. <iframe src="search.html" width="300"></iframe> for 300 pixels wide
David Middlehurst
Look here: [htmlhelp.com...]
Your problem is probably because your iframe doesnt have the scrolling attribute set. If this isn't set it then it is AUTO by default which means it suits the contents size. If you put scrolling=no then there will be not scrollbars whatever.