View Single Post
Old 08-10-2015, 05:07 PM  
daddy_fu
Registered User
 
daddy_fu's Avatar
 
Industry Role:
Join Date: Aug 2015
Location: NYC
Posts: 15
I'm not 100% sure what you're trying to do, but it you want the iframe to be essentially hidden. So the visitor to the site doesn't see the iframe. There are a couple css changes you need to make.

html, body {
height: 100%;
overflow: hidden;
}

iframe {
height: 100%;
}

Be sure to get rid of this:

iframe {
height: 100em;
}

The trick with getting an iframe to completely fill the page and look natural, is setting the html, body height to 100%.
daddy_fu is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote