Hello there,

I want to embed an external website in my Drupal website. I achieved that by using iFrame page, but I do not like the final result because it does not look native to Drupal. Is there any way to get rid of scroll bars in iFrame page and make the external web page just look like a native Drupal page? Any ideas?

thanks,
Memoday

Comments

duellj’s picture

If you add the scrolling="no" attribute to the iframe tag, then that should suppress scrollbars for the iframe, e.g.:

<iframe scrolling="no" ...>
...
</iframe>
memoday’s picture

Thanks for your reply. I appreciate it. Where to add this? In the PHP filter?

izmeez’s picture

subscribing