Is there a way to shrink what's inside an iframe without adjusting css?
any magical 'zoom' parameter out there?!!!
I have a 600px preview iframe i want to fit a 1000px site in without scrollbars...
|
Is there a way to shrink what's inside an iframe without adjusting css? any magical 'zoom' parameter out there?!!! I have a 600px preview iframe i want to fit a 1000px site in without scrollbars...
| |||
|
feedback
|
|
I'm afraid not. Your only option would be to use site-specific CSS modifiers to reduce font and element size. | |||
|
feedback
|
|
Well, in short no. You can use in-line CSS to set the width/height to 600px and then also set the | |||||||
feedback
|
|
If you control the Iframe-content, you might find this little hack of mine useful: http://futtta.be/squeezeFrame/ It's a cross-browser standalone javascript thingy that tries to automatically adjust the size of the page it's called from to the available size of the Iframe using css zoom and moz-transform. | |||
|
feedback
|
|
You could create a thumbnail of the website. The user could not interact with it, but maybe if you added a link, the user could go to the actual site. I don't know if that's the best program, but that was what Google gave me. | |||
|
feedback
|
|
CSS3 can handle this. This bit of code should handle most all browsers or simply reduce it to fit your needs. No need to "adjust" any existing CSS:
Or if you want inline style for example just firefox:
Then of course simply add the ID to your iframe:
| ||||
|
feedback
|