Marty
Marty

Reputation: 9

how to wrap an iframe to make it larger

I use an iframe that is currently 642px x 460px. I have embedded the iframe to my site but can not change the size of the iframe to 920px x 560px. Just wondering if there is some type of "wrapper" I can use to override the size this iframe is fixed on.

Source - http://wiz1.net/channel5?61612516

Iframe - src="http://www.wiz1.net/ch5" scrolling="no" allowtransparency="no" frameborder="0" width="642" height="460">

Thanks Marty

Upvotes: 0

Views: 310

Answers (1)

Matt
Matt

Reputation: 1264

In the Iframe snippet you have Width and Height defined. Just change them to desired values.

<iframe src="http://www.wiz1.net/ch5" 
    scrolling="no"
    allowtransparency="no"
    frameborder="0"
    width="DESIRED_WIDTH" height="DESIRED_HEIGHT">
</iframe>

Upvotes: 0

Related Questions