I would like to have the light box open a web page at a "pre-scrolled" position so that the top left corner of the webpage as it open is the light box is at:
Vertical position: -787 pixels
Horizontal position -50 pixels
See page here:
Donation pageDonation page
Here is an example of "wrapper" frame I created using an iframe wrapped in the css template div below. I need the lightbox to load & display the url in the same way - so that it is "pre-scrolled" to the position I want to display.
pre-positioned (pre-scrolled) remote url
#my-div
{
width : 990px;
height : 1700px;
overflow : hidden;
position : relative;
}
#my-iframe
{
position : absolute;
top : -787px;
left : -50px;
width : 1024px;
height : 2600px;
}