shrink site page in iframe?

Does anyone have a idea how I can shrink a full site page to fit in iframe ?

I need to be able to reduce iframe site but with full page visible in the iframe etc ...

hope someone can help :)

DedicatedServer4You.com -- BIGGEST Range of Dedicated Servers at the Lowest Price!
Quote · 18 Nov 2012

I'm looking for this too for adding my site to a facebook page tab.  Also need to know how to make login, join, fb connect work in my iframe

Outdoor Community
Quote · 24 Jan 2013

 

I'm looking for this too for adding my site to a facebook page tab.  Also need to know how to make login, join, fb connect work in my iframe

 
I frames cannot reduce the size. Also dolphin uses cookies for login and as far as i know most browsers do not accept cookies set by a iframed site when iframed by another site.  Example. You cannot iframe facebook on your site, facebook cannot iframe your site.


https://www.deanbassett.com
Quote · 24 Jan 2013

 

Does anyone have a idea how I can shrink a full site page to fit in iframe ?

I need to be able to reduce iframe site but with full page visible in the iframe etc ...

hope someone can help :)

 
Nope. It is not possible.


https://www.deanbassett.com
Quote · 24 Jan 2013

I kind of assumed the iframe couldn't resize the site, but I was hoping for a code I could implement in my css that made the site auto-fit to the iframe size when loaded.  lol

 

Damn cookies!  I thought cookies were just used for the "remember me" at login.  If you login at my url and stay logged in you can then use my site in my facebook page tab.  You can even logout.  Just can't join or login.  Oh well

 

I was just hoping for a solution..  I created a fb page for my new website about 2 weeks ago.  It has over 2100 likes, but I can't get them to convert to members of my site.  People don't like to leave facebook lol.


 

Outdoor Community
Quote · 24 Jan 2013

You never know, things are changing all the time.  Play around with the following code.  Of course it probably will break in older browsers.

<!DOCTYPE html>
<html>
<body>
<style>
iframe {
  -moz-transform: scale(0.75, 0.75);
  -webkit-transform: scale(0.75, 0.75);
  -o-transform: scale(0.75, 0.75);
  -ms-transform: scale(0.75, 0.75);
  transform: scale(0.75, 0.75);
  -moz-transform-origin: top left;
  -webkit-transform-origin: top left;
  -o-transform-origin: top left;
  -ms-transform-origin: top left;
  transform-origin: top left;
}
</style>
<iframe style="border:none; width:1024px;height:1448px;overflow-y:hidden;" seamless src="http://www.w3schools.com">
  <p>Your browser does not support iframes.</p>
</iframe>

</body>
</html>

In the example I was playing with, it had a border by default; which is why I included the border in the style.  Anyway, play around with it a bit and see what happens.

Geeks, making the world a better place
Quote · 24 Jan 2013

Go here to see a javascript tool to shrink the page that might work as well.

 

http://futtta.be/squeezeFrame/

Geeks, making the world a better place
Quote · 24 Jan 2013

 

Go here to see a javascript tool to shrink the page that might work as well.

 

http://futtta.be/squeezeFrame/

 

Thanks geek girl.  I will play around with these and see how it goes.  I'm far from skilled when it comes to these things, but I usually figure out what I need eventually.  If I can't figure out a login solution I might abandon the idea, but it's good to know for the future.

Outdoor Community
Quote · 24 Jan 2013
 
 
Below is the legacy version of the Boonex site, maintained for Dolphin.Pro 7.x support.
The new Dolphin solution is powered by UNA Community Management System.