As wonderful as Drupal is, it would be awesome if a generic container module was available that would allow for external web pages to be embedded in an iframe and then positioned as a Block. I have seen reams of complex how-to on this, but nothing straight forward for the rest of us mere mortal non-propeller heads. My guess is that there are thousands of other who would love to have the simplicity of such a tool, especially if it did not involve trying to write dozens of lines of code,

thanks much for your help

Comments

marky’s picture

You can easily put an iframe in a custom block without any problems. Create a custom block of type html and add your variation of the following code as the body:

<iframe src="http://www.htmlhelp.com/reference/html40/special/iframe.html" width="100%" title="WDG Iframe reference">
<p>The WDG <a href="http://www.htmlhelp.com/reference/html40/special/iframe.html" title="Iframe reference">Iframe reference</a> is available here.</p>
</iframe>

Enable the block and assign a weight as necessary. Is this what you needed?

--
/marky