The download information box...is there a way to set it to a specific size? right now it's resizing itself to fit the filename.... it's messing up the formatting of the page.
Is there a way to make is static?
XFileSharing Pro - Download page problem
Easy way:
you need to change the table to a div with a fixed width, and you can also use the overflow:hidden attribute to not display stuff going out of the div
Hard way:
edit the index.cgi file to make another variable ($file2 or something) and do something like if(length $link > 64) $file2 = substr $link, 64; else $file2 = $link;
then in your download template you can use just the $file2 variable or use it with a js expand box or whatever you want..
you need to change the table to a div with a fixed width, and you can also use the overflow:hidden attribute to not display stuff going out of the div
Hard way:
edit the index.cgi file to make another variable ($file2 or something) and do something like if(length $link > 64) $file2 = substr $link, 64; else $file2 = $link;
then in your download template you can use just the $file2 variable or use it with a js expand box or whatever you want..