Sorry if this question has been asked before, but I'm really struggling here...
Here is the URL where the issue is happening:
I am trying to embed an iframe from one of my client's websites onto my own personal website.
Currently, I have the iframe sized how I want it, but I need it to scale to full view at dimensions (w:600xH:350).
Here is the CSS I used:
`#iframe {
width:600px;
height:350px;
-moz-transform: scale(0.25, 0.25);
-webkit-transform: scale(1,1);
-o-transform: scale(1, 0.25);
-ms-transform: scale(1, 0.25);
transform: scale(0.25, 0.25);
-moz-transform-origin: top left;
-webkit-transform-origin: top left;
-o-transform-origin: top left;
-ms-transform-origin: top left;
transform-origin: top left;
}`
And here is the iframe code I used:
`<iframe id="iframe" src="http://www.jensenworldtravel.com"></iframe>`
I would appreciate any help or advice on this matter. Thank you!