Posts Tagged ‘iframe’
So I noticed that when embedding an Iframe, Google Chrome (and Safari) failed to respond to scrolling=no.
I went to look and see if this syntax was deprecated, but its not.
Basically webkit (safari and chrome are based on them) values css styles on the html, body, and others, higher than the actual iframe style itself.
what that means is that if their is an ‘overflow’ attribute as anything other than ‘hidden’ in your applicable css, and you place scrolling=no onto an iframe style or place it in the html itself, chrome and safari will show scroll bars. firefox and IE will not. WTF?
What can you do..
Well you can place the iframe inside a div, call larger than width and heights to eleminate the ‘auto’ scroll bars in chrome and safari, then use a div outside of it with a set height and width as well as overflow=hidden to trim the iframe.
The Cause…
There is an attribute inside your css that calls overflow: scroll, or overflow: auto, or overflow-x: scroll, or overflow-y: scroll, or auto or whatever… If you are lucky enough to be able to pull this css style attribute out, it will fix your problem…
I know that if any of you have used iframes you’ll have noticed the white box that floats there so in-your-face, just taunting you with its uglyness as the rest of the page loads.
Why not take a screenshot of the page when it has fully loaded, crop the img down to just the contents of the fully loaded frame, and then use it as the background for a div container around the frame. an example would be:
<div style=”background: url(‘http://erikshosting.com/childframe/pre-load-screenshot.png’);”>
<iframe src=”http://erikshosting.com/childframe/frame1.php” width=”100%” height=”211″ frameborder=”0″ scrolling=”no” overflow=”hidden” name=”erocks-global-nav-embed”>
You Must Use A Browser Built This Century To See This Frame</iframe></div>
{/code}
Categories
Archives
- Pro -Sites Shortcodes, Functions, And Level Checks
- Automatic WP Photo Gallery From Facebook Page Photos!
- Analytics 360 For Editors
- Add nofollow rel tags to image widget
- Image Widget Alignment Fix
- Add GD Star Rating next to Post Title
- Change The Buddypress Admin Bar Logo And Link In WP3 & BP 1.2+!
- New Dashboard Lockdown & WordPress To Buddypress Profile Page Plugin!
- Hide The WordPress Dashboard and wp-admin COMPLETELY!
- Blogs & Members Directory, Strange Nav Spacing FIX















































