XFileSharing Pro - scroll problem

Message
Author
jolemando
Posts: 10
Joined: Sep 30, 2008 9:27 pm

scroll problem

#1 Postby jolemando » Sep 30, 2008 9:30 pm

Hi
Why there is scroll on main page on XFileSharingPro?
Demo : http://upload-pro.com/
I try to fix this but if i change overflow:hide, Then the scroll not shown on other pages. How i can fix this?

User avatar
PilgrimX182
Posts: 2186
Joined: Mar 22, 2006 1:39 pm

#2 Postby PilgrimX182 » Oct 06, 2008 10:11 am

Made a little research...this will fix your scrolling: in main.css update these classes:

Code: Select all

#div_file{position:static;top:-9999px;left:-9999px;}
#div_url {position:absolute;top:-9999px;left:-9999px;}
plus updated iframe on the bottom of upload_form.html:

Code: Select all

<iframe src="javascript:false;" name="xupload" style="position:absolute;top:-9999px;left:-9999px;"></iframe>
added "top:-9999px;" in all the lines above if you wonder.