You need to sign in to do that
Don't have an account?
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.

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>