views:

205

answers:

1

Hi everyone,

Having an annoying issue in IE7. I have a website where, at the bottom of every page theres an Iframe, and for the life of me I cannot get the scroll bars to hide. This is only in IE7, every other browser I have tested is fine.

I have scrolling="no" and set overflow:hidden; still not working though.

If anyones got anything they could suggest I'd be very greatful

http://www.keyscape.co.uk is the site

Cheers Martin

A: 

Try setting the BODY tag of the IFRAME content to <BODY scroll="no"> and add the following CSS the content's page:

html 
{ 
     overflow:hidden; 
}
Nissan Fan
Thanks for the suggestion, hasn't worked though
Martin Bacon
Another thing I've done in the past is set the width and height of the content in the IFRAME and use absolute position. Try that as well.
Nissan Fan