Hi,
It's a bit tricky to cope with such wide content when you have a fixed width theme. One way would be to use CSS to get scrollbars to appear on the table if it's wider than the page.
If you edit the admin/uploadusers.php file to add an extra DIV tag around the uupreview table by putting this before:
echo '<div class="autoscroll">';
and this after:
echo '</div>';
then you can add this to the CSS in theme/standard/styles_layout.css:
/* put table above in horizontally scrolling div for cases when it is too wide for the page */
#admin-uploaduser div.autoscroll {
width: 700px;
overflow-x: auto;
}
See the attached screenshot for what it will look like.
Simon
