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

link|improve this question
see here, i think: stackoverflow.com/questions/67354/… – OpaCitiZen May 9 at 8:49
feedback

2 Answers

adding scroll="no" to the body of my iframe target page worked for me. In total, here's the additional cruft I've added to my iframe for various browsers, perhaps this will help someone else:

iFrame source HTML:

<body style="overflow:hidden;" scroll="no">

iFrame tag on page:

<iframe width="280" height="196" src="http://dev.example.com/source.html"
style="overflow:hidden;" marginheight="0" marginwidth="0" frameborder="0">
</iframe>
link|improve this answer
feedback

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; 
}
link|improve this answer
Thanks for the suggestion, hasn't worked though – Martin Bacon May 24 '10 at 16:33
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. – Cat Man Do May 24 '10 at 16:50
the body thing is important to note – Danny G Apr 11 at 15:07
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.