Scheduler - Moving edit screen up via css (part 2)

In a previous question I had asked how to move the edit screen up using the css. The solution was to rem out the overflow:hidden comment in the css. Initally this worked when I was working in Firefox. However in IE8 it causes 2 problems. One is the page attempts to resize continually (the IE log in the the tab flickers) and you when you scroll down on the page it will scroll back to the top (probably due to the resize happening).

Is there another way to define the position of the edit screen?

Previous question was here
dhtmlx.com/docs/products/kb/inde … 90&a=19276

Thanks

The position of the form is controlled by the showCover method, which normally puts the form at the center of the screen, you can redefin this method as

scheduler.showCover=function(box){
this.show_cover();
if (box){
box.style.display=“block”;
box.style.top=desired_top_position+“px”;
box.style.left=desired_left_position+“px”;
}
}