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
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:
iFrame tag on page:
Try setting the
BODY
tag of the IFRAME content to<BODY scroll="no">
and add the following CSS the content's page:By using jQuery from parent page
Use this, it should work.