You cannot access the content of an iframe from another domain to change it without something like PHP. However, in IE you can do zoom style. With PHP as a fall back for other browsers it might be good to use the IE method for those browsers that support it (less server overhead). Here is an example (IE only):
Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/1999/REC-html401-19991224/loose.dtd">
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style type="text/css">
iframe {
zoom:50%;
border:2px solid black;
}
</style>
</head>
<body>
<iframe src="http://www.google.com/" width="500" height="400" scrolling="auto" frameborder="1"></iframe>
</body>
</html>
Bookmarks