Thanks for the quick reply RS_Jelle. I didn't think it was that easy - I spent over an hour trying to piece it together

.
How do you remove the 'Important Information' column as well as that's still interfering with the style.
Quote:
Originally Posted by RS_Jelle
You can't edit it easily only there. It's a known bug and the next big release will have a different layout to fix this.
But you can remove the left panel on that page only:
Open downloads.php
Find
PHP Code:
eval('$dmain_jr = "' . fetch_template('downloads_file') . '";');
eval('$dpanel = "' . fetch_template('downloads_panel_side') . '";');
eval('$dmain = "' . fetch_template('downloads_wrapper_side') . '";');
}
else if ($_GET['do'] == 'assignuser')
Replace with
PHP Code:
eval('$dmain_jr = "' . fetch_template('downloads_file') . '";');
eval('$dmain .= "' . fetch_template('downloads_wrapper_none') . '";');
}
else if ($_GET['do'] == 'assignuser')
|