function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Darrell GallegosDarrell Gallegos 

Use iFrame to Display Entire Webpage

Greetings all!

I am experimenting with iFrame and I like the functionality it gives reps while "staying" in Salesforce. I successfully added a very simple VisualForce page that renders the link called in my code. However, the webpage is cut-off and provides a scroll bar to view the entire page. I have the pixels maxed out in the layout option at 600. I have tried to use <div style> to increase the size but there seems to be a limitiation of 600. Is there a way to display the entire page?

It displays the same in either Classic or LEX.
 
<apex:page standardController="Account">
  <div style="overflow:hidden;">
    <apex:iframe src="https://meridian.sovrn.com" scrolling="true" id="theIframe" />
  </div>
</apex:page>

User-added image