David Bovill wrote:
I've a web site that I want to make smaller in Livecode. In Chrome or
Firefox I can shrink the browser view using Zoom In / Zoom Out. In Livecode
we have "revBrowserMakeTextSmaller" - but this only shrinks the text.
Any CSS or other tricks to zoom / shrink an entire web site? I guess not -
just hoping
Try this David (works for me):
<style>
iframe {
-moz-transform: scale(0.50, 0.50);
-webkit-transform: scale(0.50, 0.50);
-o-transform: scale(0.50, 0.50);
-ms-transform: scale(0.50, 0.50);
transform: scale(0.50, 0.50);
-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 id="IDNAME" src="http://www.howsoft.com"></iframe>
-----------------------------------------------
Regards,
Bob Warren
_______________________________________________
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode