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
guest1231231guest1231231 

Automatic Page Position

Is there a way to have an iframe start off at a certain point on the page?  Instead of having to scroll down, the page loads to a certain point you can then scroll up or down from?

 

-Thanks

Pradeep_NavatarPradeep_Navatar

You can put the iframe component in a div and set the position of div to 'absolute' . Sample code is given below :

 

<div style="text-align:left; vertical-align:top; width:90%; position:absolute; filter:alpha(opacity=100, style=0)-moz-opacity:50%; z-index:100;">

 

Hope this helps.

guest1231231guest1231231

So which property would I change to have it load half way down the page automatically?