Best practice forum (Archived)

uploading users

 
Simon Coggins
Re: uploading users
על ידי Simon Coggins בתאריך 16/10/2011, 17:07
קבוצה Totara

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


? ?
Re: uploading users
על ידי ? ? בתאריך 17/10/2011, 01:59
 

Thanks Simon! That's brilliant.

I will see if I can get this put in.

Haroon.