You can do this with placing the iframe in a container and adjust it with css. I used it many years ago to collect some live tickers.
Code:
<style type="text/css">
<!--
#container{
width:530px;
height:730px;
border:1px solid #000;
overflow:hidden;
float:left;
margin-left:10px;
background-color:white;
}
#container iframe {
width:650px;
height:1550px;
margin-left:-130px;
margin-top:-300px;
}
-->
</style>
<div id="container">
<iframe src="http://www.moneychimp.com/features/tax_calculator.htm" scrolling="no"></iframe></div>
Adjust and play with the css, should give you a good starting point to get what you want to do.
|