Hi,
I have a page on my website where I put an iframe and display inside it another website, something like this:
<iframe frameborder="0" height="100%" scrolling="yes" src="http://www.another-website.com/" style="overflow: scroll; min-height: 600px;" width="100%"></iframe>
My problem is that my page have a fixed width of for example 800px which the iframe width is 100% of this width, but some external websites I put inside the iframe have a wider fixed width than 600, for example if the external website have the width of 1000px then my iframe will have a horizontal scroll.
I don't want the horizontal scroll to appear and at the same time I want the iframe to show the whole width of the external website.
Is there a way that I can control the width of the external website and make it 100% of the width of my iframe instead of their fixed 1000px for example?
I don't think I can but I thought I would ask anyways maybe it's possible!
Thanks for your time.